Merge pull request #217903 from Thornycrackers-Forks/arpy

python3Packages.arpy: init at 2.3.0
This commit is contained in:
Robert Schütz
2023-02-24 13:56:21 -08:00
committed by GitHub
2 changed files with 33 additions and 0 deletions
@@ -0,0 +1,31 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, unittestCheckHook
}:
buildPythonPackage rec {
pname = "arpy";
version = "2.3.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "viraptor";
repo = pname;
rev = version;
hash = "sha256-jD1XJJhcpJymn0CwZ65U06xLKm1JjHffmx/umEO7a5s=";
};
checkInputs = [
unittestCheckHook
];
pythonImportsCheck = [ "arpy" ];
meta = with lib; {
description = "A library for accessing the archive files and reading the contents";
homepage = "https://github.com/viraptor/arpy";
license = licenses.bsd2;
maintainers = with maintainers; [ thornycrackers ];
};
}
+2
View File
@@ -600,6 +600,8 @@ self: super: with self; {
ariadne = callPackage ../development/python-modules/ariadne { };
arpy = callPackage ../development/python-modules/arpy { };
arnparse = callPackage ../development/python-modules/arnparse { };
arrayqueues = callPackage ../development/python-modules/arrayqueues { };