at master 651 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 unittestCheckHook, 6}: 7 8buildPythonPackage rec { 9 pname = "arpy"; 10 version = "2.3.0"; 11 format = "setuptools"; 12 13 src = fetchFromGitHub { 14 owner = "viraptor"; 15 repo = "arpy"; 16 rev = version; 17 hash = "sha256-jD1XJJhcpJymn0CwZ65U06xLKm1JjHffmx/umEO7a5s="; 18 }; 19 20 checkInputs = [ unittestCheckHook ]; 21 22 pythonImportsCheck = [ "arpy" ]; 23 24 meta = with lib; { 25 description = "Library for accessing the archive files and reading the contents"; 26 homepage = "https://github.com/viraptor/arpy"; 27 license = licenses.bsd2; 28 maintainers = with maintainers; [ thornycrackers ]; 29 }; 30}