Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / datadiff / default.nix
bloba971509ca823ad78db3274828e23b5719d9f1ac4
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pythonOlder
5 }:
7 buildPythonPackage rec {
8   pname = "datadiff";
9   version = "2.2.0";
10   format = "setuptools";
12   disabled = pythonOlder "3.7";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-fOcN/uqMM/HYjbRrDv/ukFzDa023Ofa7BwqC3omB0ws=";
17   };
19   # Tests are not part of the PyPI releases
20   doCheck = false;
22   pythonImportsCheck = [
23     "datadiff"
24   ];
26   meta = with lib; {
27     description = "Library to provide human-readable diffs of Python data structures";
28     homepage = "https://sourceforge.net/projects/datadiff/";
29     license = licenses.asl20;
30     maintainers = with maintainers; [ ];
31   };