Files
nixpkgs/pkgs/development/python-modules/httpsig/default.nix
R. RyanTM 8c2aaf37fd python37Packages.httpsig: 1.2.0 -> 1.3.0 (#54724)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-httpsig/versions
2019-01-28 10:24:13 +01:00

33 lines
687 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, setuptools_scm
, pycryptodome
, requests
}:
buildPythonPackage rec {
pname = "httpsig";
version = "1.3.0";
src = fetchPypi {
inherit pname version;
sha256 = "1rkc3zwsq53rjsmc47335m4viljiwdbmw3y2zry4z70j8q1dbmki";
};
buildInputs = [ setuptools_scm ];
propagatedBuildInputs = [ pycryptodome requests ];
# Jailbreak pycryptodome
preBuild = ''
substituteInPlace setup.py --replace "==3.4.7" ""
'';
meta = with lib; {
description = "Sign HTTP requests with secure signatures";
license = licenses.mit;
maintainers = with maintainers; [ srhb ];
homepage = https://github.com/ahknight/httpsig;
};
}