pyjwt: add expression
This commit is contained in:
parent
9c811b5afd
commit
0da797bd41
@ -7558,6 +7558,27 @@ let
|
||||
};
|
||||
};
|
||||
|
||||
pyjwt = buildPythonPackage rec {
|
||||
version = "0.3.2";
|
||||
name = "pyjwt-${version}";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "http://github.com/progrium/pyjwt/archive/${version}.tar.gz";
|
||||
sha256 = "118rzhpyvx1h4hslms4fdizyv6mnyd4g34fv089lvs116pj08k9c";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with self; [ pycrypto ecdsa ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "JSON Web Token implementation in Python";
|
||||
longDescription = "A Python implementation of JSON Web Token draft 01.";
|
||||
homepage = https://github.com/progrium/pyjwt;
|
||||
downloadPage = https://github.com/progrium/pyjwt/releases;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ prikhi ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
};
|
||||
|
||||
pykickstart = buildPythonPackage rec {
|
||||
name = "pykickstart-${version}";
|
||||
|
Loading…
Reference in New Issue
Block a user