python3Packages.certipy: init at 0.1.3
This commit is contained in:
parent
1635c6916e
commit
96f5b6315d
|
@ -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 ];
|
||||
};
|
||||
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in New Issue