mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
pythonPackages.requirements-detector: fix source
- The fetch expression was referencing another package (due to a copy paste error), this commit points that to the right repository
This commit is contained in:
parent
aaf4ecfdda
commit
3773e45fbb
@ -4,6 +4,7 @@
|
|||||||
, lib
|
, lib
|
||||||
|
|
||||||
# pythonPackages
|
# pythonPackages
|
||||||
|
, astroid
|
||||||
, pytest
|
, pytest
|
||||||
}:
|
}:
|
||||||
|
|
||||||
@ -13,12 +14,16 @@ buildPythonPackage rec {
|
|||||||
disabled = isPy27;
|
disabled = isPy27;
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "yuvadm";
|
owner = "landscapeio";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "15s0n1lhkz0zwi33waqkkjipal3f7s45rxsj1bw89xpr4dj87qx5";
|
sha256 = "1sfmm7daz0kpdx6pynsvi6qlfhrzxx783l1wb69c8dfzya4xssym";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
astroid
|
||||||
|
];
|
||||||
|
|
||||||
checkInputs = [
|
checkInputs = [
|
||||||
pytest
|
pytest
|
||||||
];
|
];
|
||||||
|
Loading…
Reference in New Issue
Block a user