pythonPackages.keepalive: refactor move to python-modules
This commit is contained in:
committed by
Frederik Rietdijk
parent
c099f8aaa3
commit
0e26b1e366
24
pkgs/development/python-modules/keepalive/default.nix
Normal file
24
pkgs/development/python-modules/keepalive/default.nix
Normal file
@@ -0,0 +1,24 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "keepalive";
|
||||
version = "0.5";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "3c6b96f9062a5a76022f0c9d41e9ef5552d80b1cadd4fccc1bf8f183ba1d1ec1";
|
||||
};
|
||||
|
||||
# No tests included
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "An HTTP handler for `urllib2` that supports HTTP 1.1 and keepalive";
|
||||
homepage = "https://github.com/wikier/keepalive";
|
||||
license = licenses.asl20;
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user