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:
Kevin Amado 2020-01-10 01:50:21 -05:00 committed by Jon
parent aaf4ecfdda
commit 3773e45fbb

View File

@ -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
]; ];