python3Packages.requests-unixsocket: 0.2.0 -> 0.3.0

This commit is contained in:
Fabian Affolter
2022-01-12 16:20:22 +01:00
parent 850f63feeb
commit 9e01fa6e29
@@ -9,26 +9,35 @@
buildPythonPackage rec {
pname = "requests-unixsocket";
version = "0.2.0";
version = "0.3.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "9e5c1a20afc3cf786197ae59c79bcdb0e7565f218f27df5f891307ee8817c1ea";
hash = "sha256-KDBCg+qTV9Rf/1itWxHkdwjPv1gGgXqlmyo2Mijulx4=";
};
nativeBuildInputs = [ pbr ];
propagatedBuildInputs = [ requests ];
nativeBuildInputs = [
pbr
];
checkInputs = [ pytestCheckHook waitress ];
propagatedBuildInputs = [
requests
];
preCheck = ''
rm pytest.ini
'';
checkInputs = [
pytestCheckHook
waitress
];
pythonImportsCheck = [
"requests_unixsocket"
];
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 ];
maintainers = with maintainers; [ catern ];
};
}