Skip to content

Commit 37ebbd7

Browse files
committed
packages: add kmip package
Dependency for barbican Signed-off-by: Stefan Kober <stefan.kober@cyberus-technology.de> On-behalf-of: SAP stefan.kober@sap.com
1 parent f2f447e commit 37ebbd7

2 files changed

Lines changed: 14 additions & 0 deletions

File tree

packages/default.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,7 @@ let
218218
python3Packages
219219
;
220220
};
221+
kmip = callPackage ./kmip.nix { inherit python3Packages; };
221222
microversion-parse = callPackage ./microversion-parse.nix {
222223
inherit
223224
gabbi

packages/kmip.nix

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
fetchPypi,
3+
python3Packages,
4+
}:
5+
python3Packages.buildPythonPackage rec {
6+
pname = "PyKMIP";
7+
version = "0.10.0";
8+
9+
src = fetchPypi {
10+
inherit pname version;
11+
sha256 = "sha256-u2/zELuosRMP/mdTR/Zo9yNNAiuj1R7epep+LqlSOJc=";
12+
};
13+
}

0 commit comments

Comments
 (0)