blob: 4eb2daaf26dc0f4fb37e21cc3004c88c453a74ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
{ stdenv, buildPythonPackage, fetchFromGitHub
, future, six, ecdsa, rsa
, pycrypto, pytest, pytestcov, pytestrunner, cryptography
}:
buildPythonPackage rec {
pname = "python-jose";
version = "3.0.1";
src = fetchFromGitHub {
owner = "mpdavis";
repo = "python-jose";
rev = version;
sha256 = "1ahq4m86z504bnlk9z473r7r3dprg5m39900rld797hbczdhqa4f";
};
checkInputs = [
pycrypto
pytest
pytestcov
pytestrunner
cryptography # optional dependency, but needed in tests
];
checkPhase = ''
py.test
'';
propagatedBuildInputs = [ future six ecdsa rsa ];
meta = with stdenv.lib; {
homepage = https://github.com/mpdavis/python-jose;
description = "A JOSE implementation in Python";
license = licenses.mit;
maintainers = [ maintainers.jhhuh ];
};
}
|