pythonPackages.geventhttpclient: refactor move to pyhton-modules

This commit is contained in:
Chris Ostrouchov
2018-10-16 16:20:40 -04:00
committed by Frederik Rietdijk
parent 5448e18d12
commit 5582de06a7
2 changed files with 37 additions and 25 deletions

View File

@@ -0,0 +1,36 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, pytest
, gevent
, certifi
, six
, backports_ssl_match_hostname
}:
buildPythonPackage rec {
pname = "geventhttpclient";
version = "1.3.1";
src = fetchPypi {
inherit pname version;
sha256 = "bd87af8854f5fb05738916c8973671f7035568aec69b7c842887d6faf9c0a01d";
};
buildInputs = [ pytest ];
propagatedBuildInputs = [ gevent certifi six backports_ssl_match_hostname ];
# Several tests fail that require network
doCheck = false;
checkPhase = ''
py.test $out
'';
meta = with stdenv.lib; {
homepage = https://github.com/gwik/geventhttpclient;
description = "HTTP client library for gevent";
license = licenses.mit;
maintainers = with maintainers; [ koral ];
};
}