Skip to content

Commit

Permalink
python3Packages.apted: init at 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
McSinyx committed Dec 28, 2024
1 parent 634fd46 commit aa924e4
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
28 changes: 28 additions & 0 deletions pkgs/development/python-modules/apted/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
unittestCheckHook,
}:

buildPythonPackage rec {
pname = "apted";
version = "1.0.3";
format = "setuptools";

src = fetchFromGitHub {
owner = "JoaoFelipe";
repo = "apted";
rev = "828b3e3f4c053f7d35f0b55b0d5597e8041719ac";
hash = "sha256-h8vJDC5TPpyhDxm1sHiXPegPB2eorEgyrNqzQOzSge8=";
};

nativeCheckInputs = [ unittestCheckHook ];

meta = with lib; {
description = "APTED algorithm for the Tree Edit Distance";
homepage = "https://github.com/JoaoFelipe/apted";
license = [ licenses.mit ];
maintainers = with maintainers; [ McSinyx ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -744,6 +744,8 @@ self: super: with self; {

apt-repo = callPackage ../development/python-modules/apt-repo { };

apted = callPackage ../development/python-modules/apted { };

apycula = callPackage ../development/python-modules/apycula { };

aqipy-atmotech = callPackage ../development/python-modules/aqipy-atmotech { };
Expand Down

0 comments on commit aa924e4

Please sign in to comment.