anitopy: init at 2.1.1

This commit is contained in:
PassiveLemon
2023-12-02 20:23:32 -05:00
parent 3fae5c931e
commit 6be18c387c
3 changed files with 32 additions and 0 deletions
@@ -0,0 +1,26 @@
{ 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" ];
doCheck = true;
meta = with lib; {
description = "Python library for parsing anime video filenames";
homepage = "https://github.com/igorcmoura/anitopy";
license = licenses.mpl20;
maintainers = with maintainers; [ passivelemon ];
};
}
+2
View File
@@ -42132,4 +42132,6 @@ with pkgs;
mdhtml = callPackage ../tools/text/mdhtml { };
insulator2 = callPackage ../applications/misc/insulator2 {};
animdl = python3Packages.callPackage ../applications/video/animdl { };
}
+4
View File
@@ -516,6 +516,8 @@ self: super: with self; {
amqtt = callPackage ../development/python-modules/amqtt { };
anchor-kr = callPackage ../development/python-modules/anchor-kr { };
ancp-bids = callPackage ../development/python-modules/ancp-bids { };
android-backup = callPackage ../development/python-modules/android-backup { };
@@ -538,6 +540,8 @@ self: super: with self; {
aniso8601 = callPackage ../development/python-modules/aniso8601 { };
anitopy = callPackage ../development/python-modules/anitopy { };
annexremote = callPackage ../development/python-modules/annexremote { };
annotated-types = callPackage ../development/python-modules/annotated-types { };