fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
37 lines
702 B
Nix
37 lines
702 B
Nix
{
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
lib,
|
|
|
|
# pythonPackages
|
|
pyasn1-modules,
|
|
pycryptodomex,
|
|
twofish,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyjks";
|
|
version = "20.0.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0378cec15fb11b2ed27ba54dad9fd987d48e6f62f49fcff138f5f7a8b312b044";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|