summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/ndg-httpsclient
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2022-03-30 20:27:42 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2022-04-13 16:49:35 +0200
commit1c0f606d0147346547927d4e04262e73aa04da8d (patch)
treedc891821a609f2fa746da5884d654118ebac13b8 /pkgs/development/python-modules/ndg-httpsclient
parent343530760e835d29d3cd568cd82398875328a1da (diff)
python3Packages.ndg-httpsclient: add missing pyasn1 dependency
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;