mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
python3Packages.ndg-httpsclient: add missing pyasn1 dependency
This commit is contained in:
parent
343530760e
commit
1c0f606d01
1 changed files with 7 additions and 2 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue