mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
pythonPackages.requests-unixsocket: init at 0.1.5
This commit is contained in:
parent
eab479a5f0
commit
04c3713755
@ -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 ];
|
||||
};
|
||||
}
|
@ -3706,6 +3706,8 @@ in {
|
||||
};
|
||||
});
|
||||
|
||||
requests-unixsocket = callPackage ../development/python-modules/requests-unixsocket {};
|
||||
|
||||
howdoi = buildPythonPackage (rec {
|
||||
name = "howdoi-${version}";
|
||||
version = "1.1.7";
|
||||
|
Loading…
Reference in New Issue
Block a user