nixpkgs/pkgs/development/python-modules/josepy/default.nix
R. RyanTM d440ddd95a python37Packages.josepy: 1.1.0 -> 1.2.0
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-josepy/versions
2019-07-16 03:04:34 -07:00

36 lines
651 B
Nix

{ lib, fetchPypi, buildPythonPackage
# buildInputs
, six
, setuptools
, pyopenssl
, cryptography
}:
buildPythonPackage rec {
pname = "josepy";
version = "1.2.0";
src = fetchPypi {
inherit pname version;
sha256 = "1lq2s1649zinfii9ccl1wk6aqpaj35r8xwz44020ylp9ky1rmv4w";
};
propagatedBuildInputs = [
pyopenssl
cryptography
six
setuptools
];
# too many unpackaged check requirements
doCheck = false;
meta = with lib; {
description = "JOSE protocol implementation in Python";
homepage = https://github.com/jezdez/josepy;
license = licenses.asl20;
maintainers = with maintainers; [ ];
};
}