blob: 29aa642355d838dc0bd24703643e529fadb9d7df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "daff";
version = "1.4.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-R/A5Htp+K1AR98ysAGuReKzLRlvLlKLJ8oQlf/9dJoY=";
};
# there are no tests
doCheck = false;
pythonImportsCheck = [ "daff" ];
meta = {
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 lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ turion ];
};
}
|