2
0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-02-18 01:54:34 +00:00

python3Packages.bugzilla: use fetchPypi.hash instead of sha256

This commit is contained in:
Ihar Hrachyshka 2024-10-16 17:09:57 -04:00
parent c4c95cac81
commit bf3053dfc1

View File

@ -16,7 +16,7 @@ buildPythonPackage rec {
src = fetchPypi {
pname = "python_${pname}";
inherit version;
sha256 = "sha256-4YIgFx4DPrO6YAxNE5NZ0BqhrOwdrrxDCJEORQdj3kc=";
hash = "sha256-4YIgFx4DPrO6YAxNE5NZ0BqhrOwdrrxDCJEORQdj3kc=";
};
propagatedBuildInputs = [ requests ];