Skip to content

Commit

Permalink
anitopy: init at 2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
PassiveLemon committed Dec 3, 2023
1 parent 3fae5c9 commit 6be18c3
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
26 changes: 26 additions & 0 deletions pkgs/development/python-modules/anitopy/default.nix
Original file line number Diff line number Diff line change
@@ -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 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -42132,4 +42132,6 @@ with pkgs;
mdhtml = callPackage ../tools/text/mdhtml { };

insulator2 = callPackage ../applications/misc/insulator2 {};

animdl = python3Packages.callPackage ../applications/video/animdl { };
}
4 changes: 4 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };
Expand All @@ -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 { };
Expand Down

0 comments on commit 6be18c3

Please sign in to comment.