summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/ndg-httpsclient
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2022-08-23 10:06:00 +0200
committerGitHub <noreply@github.com>2022-08-23 10:06:00 +0200
commit4d225e0b67421175fb7e3b2bbf886098689b1430 (patch)
tree8a0e67330bf095e4e05b565ffa0d1bd8e6715d83 /pkgs/development/python-modules/ndg-httpsclient
parent19c8149641c98c513ed5aec68f9fbd24621df278 (diff)
parent279e8eaf51de6dd3ce1e2b2ed50d48ef07cda212 (diff)
Merge branch 'master' into ripe-atlas-sagan
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;