lol

python3Packages.arpy: init at 2.3.0

+33
+31
pkgs/development/python-modules/arpy/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , unittestCheckHook 5 + }: 6 + 7 + buildPythonPackage rec { 8 + pname = "arpy"; 9 + version = "2.3.0"; 10 + format = "setuptools"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "viraptor"; 14 + repo = pname; 15 + rev = version; 16 + hash = "sha256-jD1XJJhcpJymn0CwZ65U06xLKm1JjHffmx/umEO7a5s="; 17 + }; 18 + 19 + checkInputs = [ 20 + unittestCheckHook 21 + ]; 22 + 23 + pythonImportsCheck = [ "arpy" ]; 24 + 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 + }; 31 + }
+2
pkgs/top-level/python-packages.nix
··· 600 600 601 601 ariadne = callPackage ../development/python-modules/ariadne { }; 602 602 603 + arpy = callPackage ../development/python-modules/arpy { }; 604 + 603 605 arnparse = callPackage ../development/python-modules/arnparse { }; 604 606 605 607 arrayqueues = callPackage ../development/python-modules/arrayqueues { };