lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.requests-unixsocket: 0.2.0 -> 0.3.0

+18 -9
+18 -9
pkgs/development/python-modules/requests-unixsocket/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "requests-unixsocket"; 12 - version = "0.2.0"; 12 + version = "0.3.0"; 13 + format = "setuptools"; 13 14 14 15 src = fetchPypi { 15 16 inherit pname version; 16 - sha256 = "9e5c1a20afc3cf786197ae59c79bcdb0e7565f218f27df5f891307ee8817c1ea"; 17 + hash = "sha256-KDBCg+qTV9Rf/1itWxHkdwjPv1gGgXqlmyo2Mijulx4="; 17 18 }; 18 19 19 - nativeBuildInputs = [ pbr ]; 20 - propagatedBuildInputs = [ requests ]; 20 + nativeBuildInputs = [ 21 + pbr 22 + ]; 23 + 24 + propagatedBuildInputs = [ 25 + requests 26 + ]; 21 27 22 - checkInputs = [ pytestCheckHook waitress ]; 28 + checkInputs = [ 29 + pytestCheckHook 30 + waitress 31 + ]; 23 32 24 - preCheck = '' 25 - rm pytest.ini 26 - ''; 33 + pythonImportsCheck = [ 34 + "requests_unixsocket" 35 + ]; 27 36 28 37 meta = with lib; { 29 38 description = "Use requests to talk HTTP via a UNIX domain socket"; 30 39 homepage = "https://github.com/msabramo/requests-unixsocket"; 31 40 license = licenses.asl20; 32 - maintainers = [ maintainers.catern ]; 41 + maintainers = with maintainers; [ catern ]; 33 42 }; 34 43 }