lol
fork

Configure Feed

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

python310Packages.requests-http-signature: 0.2.0 -> 0.7.1

+16 -4
+16 -4
pkgs/development/python-modules/requests-http-signature/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 - , cryptography 4 + , http-message-signatures 5 + , http-sfv 5 6 , requests 6 7 , pytestCheckHook 8 + , pythonOlder 9 + , setuptools-scm 7 10 }: 8 11 9 12 buildPythonPackage rec { 10 13 pname = "requests-http-signature"; 11 - version = "0.2.0"; 14 + version = "0.7.1"; 12 15 format = "setuptools"; 16 + 17 + disabled = pythonOlder "3.7"; 13 18 14 19 src = fetchFromGitHub { 15 20 owner = "pyauth"; 16 21 repo = pname; 17 22 rev = "v${version}"; 18 - hash = "sha256-B45P/loXcRKOChSDeHOnlz+67mtmTeAMYlo21TOmV8s="; 23 + hash = "sha256-sW2vYqT/nY27DvEKHdptc3dUpuqKmD7PLMs+Xp+cpeU="; 19 24 }; 20 25 26 + SETUPTOOLS_SCM_PRETEND_VERSION = version; 27 + 28 + nativeBuildInputs = [ 29 + setuptools-scm 30 + ]; 31 + 21 32 propagatedBuildInputs = [ 22 - cryptography 33 + http-message-signatures 34 + http-sfv 23 35 requests 24 36 ]; 25 37