Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 461 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, nose 5}: 6 7buildPythonPackage rec { 8 pname = "datadiff"; 9 version = "1.1.6"; 10 11 src = fetchPypi { 12 inherit pname version; 13 extension = "zip"; 14 sha256 = "f1402701063998f6a70609789aae8dc05703f3ad0a34882f6199653654c55543"; 15 }; 16 17 buildInputs = [ nose ]; 18 19 meta = with stdenv.lib; { 20 description = "DataDiff"; 21 homepage = https://sourceforge.net/projects/datadiff/; 22 license = licenses.asl20; 23 }; 24 25}