nixpkgs/pkgs/development/python-modules/certipy/default.nix

28 lines
528 B
Nix
Raw Normal View History

{ lib
2019-12-26 14:31:15 +00:00
, buildPythonPackage
, fetchPypi
, pyopenssl
}:
buildPythonPackage rec {
pname = "certipy";
version = "0.1.3";
src = fetchPypi {
inherit pname version;
sha256 = "0n980gqpzh0fm58h3i4mi2i10wgj606lscm1r5sk60vbf6vh8mv9";
};
propagatedBuildInputs = [ pyopenssl ];
2020-08-25 02:07:09 +00:00
2019-12-26 14:31:15 +00:00
doCheck = false; #no tests were included
meta = with lib; {
homepage = "https://github.com/LLNL/certipy";
2019-12-26 14:31:15 +00:00
description = "wrapper for pyOpenSSL";
license = licenses.bsd3;
maintainers = with maintainers; [ isgy ];
};
}