summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/ndg-httpsclient
diff options
context:
space:
mode:
authorMartin Weinelt <mweinelt@users.noreply.github.com>2022-04-17 20:38:16 +0200
committerGitHub <noreply@github.com>2022-04-17 20:38:16 +0200
commit95af2245a32f8e1310ad4e3bf50b76d86ddbbc0a (patch)
treea83469ae1fb44ebc71c7143b1fc5332148194f78 /pkgs/development/python-modules/ndg-httpsclient
parent212dde2609b3011da6f7ba65b45a002fcc40ea7e (diff)
parent70d726c2a51ee60015b68d6c3b40de55fa59cc9c (diff)
Merge pull request #168737 from NixOS/staging-next
Diffstat (limited to 'pkgs/development/python-modules/ndg-httpsclient')
-rw-r--r--pkgs/development/python-modules/ndg-httpsclient/default.nix9
1 files changed, 7 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/ndg-httpsclient/default.nix b/pkgs/development/python-modules/ndg-httpsclient/default.nix
index 0082b8e8db23..39429950b71c 100644
--- a/pkgs/development/python-modules/ndg-httpsclient/default.nix
+++ b/pkgs/development/python-modules/ndg-httpsclient/default.nix
@@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
+, pyasn1
, pyopenssl
}:
@@ -8,8 +9,6 @@ buildPythonPackage rec {
version = "0.5.1";
pname = "ndg-httpsclient";
- propagatedBuildInputs = [ pyopenssl ];
-
src = fetchFromGitHub {
owner = "cedadev";
repo = "ndg_httpsclient";
@@ -17,6 +16,12 @@ buildPythonPackage rec {
sha256 = "0lhsgs4am4xyjssng5p0vkfwqncczj1dpa0vss4lrhzq86mnn5rz";
};
+
+ propagatedBuildInputs = [
+ pyasn1
+ pyopenssl
+ ];
+
# uses networking
doCheck = false;