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