My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/datadiff/default.nix

25 lines
453 B

{ lib
, 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;
};
}