ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / arnparse / default.nix
blobc2bd8bfa47a8e090843d1dcc0813792449f98389
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , pytestCheckHook
5 }:
7 buildPythonPackage rec {
8   pname = "arnparse";
9   version = "0.0.2";
10   format = "setuptools";
12   src = fetchFromGitHub {
13     owner = "PokaInc";
14     repo = "arnparse";
15     rev = version;
16     sha256 = "sha256-2+wxzYoS/KJXjYM6lZguxbr2Oxobo0eFNnzWZHLi0WM=";
17   };
19   checkInputs = [
20     pytestCheckHook
21   ];
23   pythonImportsCheck = [
24     "arnparse"
25   ];
27   meta = with lib; {
28     description = "Parse ARNs using Python";
29     homepage = "https://github.com/PokaInc/arnparse";
30     license = licenses.mit;
31     maintainers = with maintainers; [ wolfangaukang ];
32   };