at 24.05-pre 652 B view raw
1{ lib 2, buildPythonPackage 3, fetchFromGitHub 4, unittestCheckHook 5}: 6 7buildPythonPackage 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}