python3Packages.certipy: init at 0.1.3

This commit is contained in:
isgy 2019-12-26 14:31:15 +00:00
parent 1635c6916e
commit 96f5b6315d
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, pyopenssl
}:
buildPythonPackage rec {
pname = "certipy";
version = "0.1.3";
src = fetchPypi {
inherit pname version;
sha256 = "0n980gqpzh0fm58h3i4mi2i10wgj606lscm1r5sk60vbf6vh8mv9";
};
propagatedBuildInputs = [ pyopenssl ];
doCheck = false; #no tests were included
meta = with stdenv.lib; {
homepage = https://github.com/LLNL/certipy;
description = "wrapper for pyOpenSSL";
license = licenses.bsd3;
maintainers = with maintainers; [ isgy ];
};
}

View File

@ -1942,6 +1942,8 @@ in {
certifi = callPackage ../development/python-modules/certifi { };
certipy = callPackage ../development/python-modules/certipy {};
characteristic = callPackage ../development/python-modules/characteristic { };
chart-studio = callPackage ../development/python-modules/chart-studio { };