Martin Weinelt 266c161842
python312Packages: cleanup instances of doCheck = true
This is implicitly the case, and unless `doCheck` is referenced it makes
no sense setting it.
2024-10-26 01:47:02 +02:00

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 ];
};
}