diff options
| author | Matthew Bauer <mjbauer95@gmail.com> | 2019-05-02 17:37:20 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-05-02 17:37:20 -0400 |
| commit | 296e8fef618c7597c3dfa84be2fcdb2771350b61 (patch) | |
| tree | 36c75341bd3f64da0d722da4fb30ec3a8d0fad87 /pkgs/development/python-modules/ndg-httpsclient | |
| parent | 4688f4078fa655fa3e56a8a4b2591fb195a7eceb (diff) | |
| parent | 3567b1390fde8681a0f0b4581f2babbe863ede9a (diff) | |
Merge branch 'staging' into mesa_3
Diffstat (limited to 'pkgs/development/python-modules/ndg-httpsclient')
| -rw-r--r-- | pkgs/development/python-modules/ndg-httpsclient/default.nix | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/ndg-httpsclient/default.nix b/pkgs/development/python-modules/ndg-httpsclient/default.nix new file mode 100644 index 000000000000..780f2c330860 --- /dev/null +++ b/pkgs/development/python-modules/ndg-httpsclient/default.nix @@ -0,0 +1,30 @@ +{ stdenv +, buildPythonPackage +, fetchFromGitHub +, pyopenssl +}: + +buildPythonPackage rec { + version = "0.4.2"; + pname = "ndg-httpsclient"; + + propagatedBuildInputs = [ pyopenssl ]; + + src = fetchFromGitHub { + owner = "cedadev"; + repo = "ndg_httpsclient"; + rev = version; + sha256 = "1kk4knv029j0cicfiv23c1rayc1n3f1j3rhl0527gxiv0qv4jw8h"; + }; + + # uses networking + doCheck = false; + + meta = with stdenv.lib; { + homepage = https://github.com/cedadev/ndg_httpsclient/; + description = "Provide enhanced HTTPS support for httplib and urllib2 using PyOpenSSL"; + license = licenses.bsd2; + maintainers = with maintainers; [ ]; + }; + +} |
