lol

python313Packages.pgpy-dtc: init at 0.1.1

+46
+44
pkgs/development/python-modules/pgpy-dtc/default.nix
··· 1 + { 2 + lib, 3 + pythonOlder, 4 + fetchFromGitHub, 5 + buildPythonPackage, 6 + setuptools, 7 + pyasn1, 8 + cryptography, 9 + pytestCheckHook, 10 + }: 11 + 12 + buildPythonPackage rec { 13 + pname = "pgpy-dtc"; 14 + version = "0.1.1"; 15 + pyproject = true; 16 + 17 + disabled = pythonOlder "3.7"; 18 + 19 + src = fetchFromGitHub { 20 + owner = "DigitalTrustCenter"; 21 + repo = "PGPy_dtc"; 22 + tag = version; 23 + hash = "sha256-0zv2gtgp/iGDQescaDpng1gqbgjv7iXFvtwEt3YIPy4="; 24 + }; 25 + 26 + build-system = [ setuptools ]; 27 + 28 + dependencies = [ 29 + pyasn1 30 + cryptography 31 + ]; 32 + 33 + nativeCheckInputs = [ pytestCheckHook ]; 34 + 35 + pythonImportsCheck = [ "pgpy_dtc" ]; 36 + 37 + meta = { 38 + homepage = "https://github.com/DigitalTrustCenter/PGPy_dtc"; 39 + changelog = "https://github.com/DigitalTrustCenter/PGPy_dtc/releases/tag/${src.tag}"; 40 + description = "Pretty Good Privacy for Python"; 41 + license = lib.licenses.eupl12; 42 + maintainers = with lib.maintainers; [ networkexception ]; 43 + }; 44 + }
+2
pkgs/top-level/python-packages.nix
··· 10277 10277 10278 10278 pgpy = callPackage ../development/python-modules/pgpy { }; 10279 10279 10280 + pgpy-dtc = callPackage ../development/python-modules/pgpy-dtc { }; 10281 + 10280 10282 pgsanity = callPackage ../development/python-modules/pgsanity { }; 10281 10283 10282 10284 pgspecial = callPackage ../development/python-modules/pgspecial { };