summary refs log tree commit diff
path: root/pkgs/development/python-modules/datadiff/default.nix
blob: 6804623522758dfdf67aaaf7bbde710d707ac579 (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
{ lib, stdenv
, buildPythonPackage
, fetchPypi
, nose
}:

buildPythonPackage rec {
  pname = "datadiff";
  version = "1.1.6";

  src = fetchPypi {
    inherit pname version;
    extension = "zip";
    sha256 = "f1402701063998f6a70609789aae8dc05703f3ad0a34882f6199653654c55543";
  };

  buildInputs = [ nose ];

  meta = with lib; {
    description = "DataDiff";
    homepage = "https://sourceforge.net/projects/datadiff/";
    license = licenses.asl20;
  };

}