1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "daff";
9 version = "1.3.46";
10
11 src = fetchPypi {
12 inherit pname version;
13 hash = "sha256-ItDan9ajJ1tUySapyXsYD5JYqtZRE+oY8/7FLLrc2Bg=";
14 };
15
16 # there are no tests
17 doCheck = false;
18
19 pythonImportsCheck = [ "daff" ];
20
21 meta = with lib; {
22 description = "Library for comparing tables, producing a summary of their differences, and using such a summary as a patch file";
23 homepage = "https://github.com/paulfitz/daff";
24 license = with licenses; [ mit ];
25 maintainers = with maintainers; [ turion ];
26 };
27}