Merge pull request #187369 from WolfangAukang/arnparse
python3Packages.arnparse: init at 0.0.2
This commit is contained in:
commit
1bccd96145
2 changed files with 35 additions and 0 deletions
33
pkgs/development/python-modules/arnparse/default.nix
Normal file
33
pkgs/development/python-modules/arnparse/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -695,6 +695,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 { };
|
||||
|
|
Loading…
Reference in a new issue