Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
27 lines
594 B
Nix
27 lines
594 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "anitopy";
|
|
version = "2.1.1";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "igorcmoura";
|
|
repo = "anitopy";
|
|
rev = "v${version}";
|
|
hash = "sha256-xXEf7AJKg7grDmkKfFuC4Fk6QYFJtezClyfA3vq8TfQ=";
|
|
};
|
|
|
|
pythonImportsCheck = [ "anitopy" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python library for parsing anime video filenames";
|
|
homepage = "https://github.com/igorcmoura/anitopy";
|
|
license = licenses.mpl20;
|
|
maintainers = with maintainers; [ passivelemon ];
|
|
};
|
|
}
|