python3Packages.arnparse: init at 0.0.2

This commit is contained in:
P. R. d. O 2022-08-18 18:05:31 -06:00
parent 5efa052928
commit 9f585d722b
No known key found for this signature in database
GPG Key ID: 7B0FF33FF90110C7
2 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,33 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "arnparse";
version = "0.0.2";
format = "setuptools";
src = fetchFromGitHub {
owner = "PokaInc";
repo = "arnparse";
rev = version;
sha256 = "sha256-2+wxzYoS/KJXjYM6lZguxbr2Oxobo0eFNnzWZHLi0WM=";
};
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"arnparse"
];
meta = with lib; {
description = "Parse ARNs using Python";
homepage = "https://github.com/PokaInc/arnparse";
license = licenses.mit;
maintainers = with maintainers; [ wolfangaukang ];
};
}

View File

@ -693,6 +693,8 @@ in {
aria2p = callPackage ../development/python-modules/aria2p { };
arnparse = callPackage ../development/python-modules/arnparse { };
arrayqueues = callPackage ../development/python-modules/arrayqueues { };
arris-tg2492lg = callPackage ../development/python-modules/arris-tg2492lg { };