mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 11:00:19 +03:00
pythonPackages.jwcrypto: init at 0.6.0 dependency for broken github3_py
This commit is contained in:
parent
9ab6554d3d
commit
cafc4786f1
26
pkgs/development/python-modules/jwcrypto/default.nix
Normal file
26
pkgs/development/python-modules/jwcrypto/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, cryptography
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "jwcrypto";
|
||||
version = "0.6.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "a87ac0922d09d9a65011f76d99849f1fbad3d95439c7452cebf4ab0871c2b665";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
cryptography
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Implementation of JOSE Web standards";
|
||||
homepage = https://github.com/latchset/jwcrypto;
|
||||
license = licenses.lgpl3Plus;
|
||||
maintainers = [ maintainers.costrouc ];
|
||||
};
|
||||
}
|
@ -412,6 +412,8 @@ in {
|
||||
|
||||
jira = callPackage ../development/python-modules/jira { };
|
||||
|
||||
jwcrypto = callPackage ../development/python-modules/jwcrypto { };
|
||||
|
||||
lammps-cython = callPackage ../development/python-modules/lammps-cython {
|
||||
mpi = pkgs.openmpi;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user