Merge pull request #44261 from dotlambda/python-jose-3.0.0

python.pkgs.python-jose: 2.0.2 -> 3.0.0
This commit is contained in:
Jörg Thalheim 2018-08-01 10:51:39 +01:00 committed by GitHub
commit 12c71a8cbc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,30 +1,29 @@
{ stdenv, buildPythonPackage, fetchFromGitHub
, future, six, ecdsa, pycryptodome, pytest, cryptography
, six, ecdsa, rsa, future, pytest, cryptography, pycryptodome
}:
buildPythonPackage rec {
pname = "python-jose";
version = "2.0.2";
version = "3.0.0";
# no tests in PyPI tarball
src = fetchFromGitHub {
owner = "mpdavis";
repo = "python-jose";
# 2.0.2 not tagged on GitHub
# see https://github.com/mpdavis/python-jose/issues/86
rev = "28cc6719eceb89129eed59c25f7bdac015665bdd";
sha256 = "03wkq2rszy0rzy5gygsh4s7i6ls8zflgbcvxnflvmh7nis7002fp";
rev = version;
sha256 = "1dq8v87abqxv07wi403ywjk9jg1da125fviycqzki48cjxx0dhwj";
};
checkInputs = [
pytest
cryptography # optional dependency, but needed in tests
# optional dependencies, but needed in tests
cryptography pycryptodome
];
checkPhase = ''
py.test
'';
propagatedBuildInputs = [ future six ecdsa pycryptodome ];
propagatedBuildInputs = [ six ecdsa rsa future ];
meta = with stdenv.lib; {
homepage = https://github.com/mpdavis/python-jose;