python3Packages.daff: init at 1.3.46 (#291597)

Co-authored-by: Manuel Bärenz <m.baerenz@sonnen.de>
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
Manuel Bärenz 2024-03-11 13:55:04 +01:00 committed by GitHub
parent 8fac131a73
commit 921495ab81
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,28 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "daff";
version = "1.3.46";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-ItDan9ajJ1tUySapyXsYD5JYqtZRE+oY8/7FLLrc2Bg=";
};
# there are no tests
doCheck = false;
pythonImportsCheck = [
"daff"
];
meta = with lib; {
description = "Library for comparing tables, producing a summary of their differences, and using such a summary as a patch file";
homepage = "https://github.com/paulfitz/daff";
license = with licenses; [ mit ];
maintainers = with maintainers; [ turion ];
};
}

View File

@ -2618,6 +2618,8 @@ self: super: with self; {
daemonocle = callPackage ../development/python-modules/daemonocle { };
daff = callPackage ../development/python-modules/daff { };
daiquiri = callPackage ../development/python-modules/daiquiri { };
dalle-mini = callPackage ../development/python-modules/dalle-mini { };