pythonPackages.python-jose: init at 1.3.2
This commit is contained in:
29
pkgs/development/python-modules/python-jose/default.nix
Normal file
29
pkgs/development/python-modules/python-jose/default.nix
Normal file
@@ -0,0 +1,29 @@
|
||||
{ stdenv, buildPythonPackage, fetchFromGitHub
|
||||
, future, six, ecdsa, pycryptodome, pytest
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
name = "python-jose-${version}";
|
||||
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 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user