Commit 6be18c38 authored by PassiveLemon's avatar PassiveLemon
Browse files

anitopy: init at 2.1.1

parent 3fae5c93
Loading
Loading
Loading
Loading
+26 −0
Original line number Diff line number Diff line
{ 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 −0
Original line number Diff line number Diff line
@@ -42132,4 +42132,6 @@ with pkgs;
  mdhtml = callPackage ../tools/text/mdhtml { };
  insulator2 = callPackage ../applications/misc/insulator2 {};
  animdl = python3Packages.callPackage ../applications/video/animdl { };
}
+4 −0
Original line number Diff line number Diff line
@@ -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 { };