We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2f447e commit 37ebbd7Copy full SHA for 37ebbd7
2 files changed
packages/default.nix
@@ -218,6 +218,7 @@ let
218
python3Packages
219
;
220
};
221
+ kmip = callPackage ./kmip.nix { inherit python3Packages; };
222
microversion-parse = callPackage ./microversion-parse.nix {
223
inherit
224
gabbi
packages/kmip.nix
@@ -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