2017-03-15 23:43:58 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchFromGitHub
|
|
|
|
, future, six, ecdsa, pycryptodome, pytest
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-05-27 10:25:35 +01:00
|
|
|
pname = "python-jose";
|
|
|
|
name = "${pname}-${version}";
|
2017-03-15 23:43:58 +00:00
|
|
|
version = "1.3.2";
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mpdavis";
|
|
|
|
repo = "python-jose";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "0933pbflv2pvws5m0ksz8y1fqr8m123smmrbr5k9a71nssd502sv";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ pytest ];
|
|
|
|
checkPhase = "py.test .";
|
|
|
|
patches = [
|
|
|
|
# to use pycryptodme instead of pycrypto
|
|
|
|
./pycryptodome.patch
|
|
|
|
];
|
|
|
|
propagatedBuildInputs = [ future six ecdsa pycryptodome ];
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = "https://github.com/mpdavis/python-jose";
|
|
|
|
description = "A JOSE implementation in Python";
|
|
|
|
platforms = platforms.all;
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.jhhuh ];
|
|
|
|
};
|
|
|
|
}
|