about summary refs log tree commit diff
path: root/pkgs/development/python-modules/daff/default.nix
blob: d12b3245879b7ab27a25204812383a7ed7149751 (plain) (blame)
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
{
  lib,
  buildPythonPackage,
  fetchPypi,
}:

buildPythonPackage rec {
  pname = "daff";
  version = "1.3.46";

  src = fetchPypi {
    inherit pname version;
    hash = "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 ];
  };
}