pythonPackages.pyjks: init a 19.0.0

This commit is contained in:
Kevin Amado
2019-12-28 03:58:53 -05:00
parent 46a3045884
commit 8b2b1d125d
2 changed files with 39 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
{ buildPythonPackage
, fetchPypi
, lib
# pythonPackages
, pyasn1-modules
, pycryptodomex
, twofish
}:
buildPythonPackage rec {
pname = "pyjks";
version = "19.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "06h1cybsdj2wi0jf7igbr722xfm87crqn4g7m3bgrpxwi41b9rcw";
};
propagatedBuildInputs = [
pyasn1-modules
pycryptodomex
twofish
];
# Tests assume network connectivity
doCheck = false;
meta = {
description = "Pure-Python Java Keystore (JKS) library";
homepage = "https://github.com/kurtbrose/pyjks";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
kamadorueda
];
};
}