mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
josepy: init at 1.0.1
This commit is contained in:
parent
cc4677c36e
commit
7a0027804c
2 changed files with 37 additions and 0 deletions
35
pkgs/development/python-modules/josepy/default.nix
Normal file
35
pkgs/development/python-modules/josepy/default.nix
Normal file
|
@ -0,0 +1,35 @@
|
|||
{ lib, fetchPypi, buildPythonPackage
|
||||
# buildInputs
|
||||
, six
|
||||
, setuptools
|
||||
, pyopenssl
|
||||
, cryptography
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "josepy";
|
||||
version = "1.0.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1k0ahzzaq2rrjiifwbhbp7vm8z4zk0ipgiqwicil80kzlf6bhj4z";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
pyopenssl
|
||||
cryptography
|
||||
six
|
||||
setuptools
|
||||
];
|
||||
|
||||
# too many unpackaged check requirements
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "JOSE protocol implementation in Python";
|
||||
homepage = https://github.com/jezdez/josepy;
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ ];
|
||||
};
|
||||
}
|
||||
|
|
@ -5219,6 +5219,8 @@ in {
|
|||
|
||||
JPype1 = callPackage ../development/python-modules/JPype1 {};
|
||||
|
||||
josepy = callPackage ../development/python-modules/josepy {};
|
||||
|
||||
jsbeautifier = callPackage ../development/python-modules/jsbeautifier {};
|
||||
|
||||
jug = callPackage ../development/python-modules/jug {};
|
||||
|
|
Loading…
Reference in a new issue