aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/requirements-detector
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2020-02-03 09:26:35 +0100
committerKatharina Fey <kookie@spacekookie.de>2020-02-03 09:26:35 +0100
commit899a451e08f7d6d2c8214d119c2a0316849a0ed4 (patch)
tree5e72a7288b7d2b33fead36fbfe91a02a48ff7fef /nixpkgs/pkgs/development/python-modules/requirements-detector
parent5962418b6543dfb3ca34965c0fa16dd77543801b (diff)
parenta21c2fa3ea2b88e698db6fc151d9c7259ae14d96 (diff)
Merge commit 'a21c2fa3ea2b88e698db6fc151d9c7259ae14d96'
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/requirements-detector')
-rw-r--r--nixpkgs/pkgs/development/python-modules/requirements-detector/default.nix9
1 files changed, 7 insertions, 2 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/requirements-detector/default.nix b/nixpkgs/pkgs/development/python-modules/requirements-detector/default.nix
index a0f312389f1..0d91cbc7509 100644
--- a/nixpkgs/pkgs/development/python-modules/requirements-detector/default.nix
+++ b/nixpkgs/pkgs/development/python-modules/requirements-detector/default.nix
@@ -4,6 +4,7 @@
, lib
# pythonPackages
+, astroid
, pytest
}:
@@ -13,12 +14,16 @@ buildPythonPackage rec {
disabled = isPy27;
src = fetchFromGitHub {
- owner = "yuvadm";
+ owner = "landscapeio";
repo = pname;
rev = version;
- sha256 = "15s0n1lhkz0zwi33waqkkjipal3f7s45rxsj1bw89xpr4dj87qx5";
+ sha256 = "1sfmm7daz0kpdx6pynsvi6qlfhrzxx783l1wb69c8dfzya4xssym";
};
+ propagatedBuildInputs = [
+ astroid
+ ];
+
checkInputs = [
pytest
];