Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5}: 6buildPythonPackage rec { 7 pname = "anitopy"; 8 version = "2.1.1"; 9 format = "setuptools"; 10 11 src = fetchFromGitHub { 12 owner = "igorcmoura"; 13 repo = "anitopy"; 14 rev = "v${version}"; 15 hash = "sha256-xXEf7AJKg7grDmkKfFuC4Fk6QYFJtezClyfA3vq8TfQ="; 16 }; 17 18 pythonImportsCheck = [ "anitopy" ]; 19 doCheck = true; 20 21 meta = with lib; { 22 description = "Python library for parsing anime video filenames"; 23 homepage = "https://github.com/igorcmoura/anitopy"; 24 license = licenses.mpl20; 25 maintainers = with maintainers; [ passivelemon ]; 26 }; 27}