summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/ndg-httpsclient
diff options
context:
space:
mode:
authorRobert Hensing <robert@roberthensing.nl>2022-12-02 18:12:14 +0000
committerRobert Hensing <robert@roberthensing.nl>2022-12-02 18:12:14 +0000
commit7bfbf037d7fea8edca0ef75edd15ce4534052c5c (patch)
tree114669c9b210ea663710cd403350a43288b60e51 /pkgs/development/python-modules/ndg-httpsclient
parent4e502a1c4d207610b0964b92bb41e574ed62e9c9 (diff)
parentfad052f056576d04a8eb7a6b374584a740e10706 (diff)
Merge remote-tracking branch 'upstream/master' into allow-configuration-of-roles
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;