Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / arpy / default.nix
blob229e15d24ff343082b79e3a96d429770ba755367
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , unittestCheckHook
5 }:
7 buildPythonPackage rec {
8   pname = "arpy";
9   version = "2.3.0";
10   format = "setuptools";
12   src = fetchFromGitHub {
13     owner = "viraptor";
14     repo = pname;
15     rev = version;
16     hash = "sha256-jD1XJJhcpJymn0CwZ65U06xLKm1JjHffmx/umEO7a5s=";
17   };
19   checkInputs = [
20     unittestCheckHook
21   ];
23   pythonImportsCheck = [ "arpy" ];
25   meta = with lib; {
26     description = "A library for accessing the archive files and reading the contents";
27     homepage = "https://github.com/viraptor/arpy";
28     license = licenses.bsd2;
29     maintainers = with maintainers; [ thornycrackers ];
30   };