Merge pull request #35056 from catern/master
pythonPackages.requests-unixsocket: init at 0.1.5
This commit is contained in:
commit
196b4863de
@ -0,0 +1,28 @@
|
|||||||
|
{ lib, buildPythonPackage, fetchPypi
|
||||||
|
, pbr, requests
|
||||||
|
, pytest, pytestpep8, waitress }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "requests-unixsocket";
|
||||||
|
version = "0.1.5";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0k19knydh0fzd7w12lfy18arl1ndwa0zln33vsb37yv1iw9w06x9";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pbr ];
|
||||||
|
propagatedBuildInputs = [ requests ];
|
||||||
|
|
||||||
|
checkInputs = [ pytest pytestpep8 waitress ];
|
||||||
|
checkPhase = ''
|
||||||
|
py.test
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Use requests to talk HTTP via a UNIX domain socket";
|
||||||
|
homepage = https://github.com/msabramo/requests-unixsocket;
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = [ maintainers.catern ];
|
||||||
|
};
|
||||||
|
}
|
@ -3550,6 +3550,8 @@ in {
|
|||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
|
requests-unixsocket = callPackage ../development/python-modules/requests-unixsocket {};
|
||||||
|
|
||||||
howdoi = buildPythonPackage (rec {
|
howdoi = buildPythonPackage (rec {
|
||||||
name = "howdoi-${version}";
|
name = "howdoi-${version}";
|
||||||
version = "1.1.7";
|
version = "1.1.7";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user