Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 37 lines 665 B view raw
1{ buildPythonPackage 2, fetchPypi 3, lib 4 5# pythonPackages 6, pyasn1-modules 7, pycryptodomex 8, twofish 9}: 10 11buildPythonPackage rec { 12 pname = "pyjks"; 13 version = "19.0.0"; 14 15 src = fetchPypi { 16 inherit pname version; 17 sha256 = "06h1cybsdj2wi0jf7igbr722xfm87crqn4g7m3bgrpxwi41b9rcw"; 18 }; 19 20 propagatedBuildInputs = [ 21 pyasn1-modules 22 pycryptodomex 23 twofish 24 ]; 25 26 # Tests assume network connectivity 27 doCheck = false; 28 29 meta = { 30 description = "Pure-Python Java Keystore (JKS) library"; 31 homepage = "https://github.com/kurtbrose/pyjks"; 32 license = lib.licenses.mit; 33 maintainers = with lib.maintainers; [ 34 kamadorueda 35 ]; 36 }; 37}