Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv, buildPythonPackage, fetchurl }: 2 3buildPythonPackage rec { 4 name = "${pname}-${version}"; 5 pname = "incremental"; 6 version = "17.5.0"; 7 8 src = fetchurl { 9 url = "mirror://pypi/i/${pname}/${name}.tar.gz"; 10 sha256 = "7b751696aaf36eebfab537e458929e194460051ccad279c72b755a167eebd4b3"; 11 }; 12 13 meta = with stdenv.lib; { 14 homepage = http://github.com/twisted/treq; 15 description = "Incremental is a small library that versions your Python projects"; 16 license = licenses.mit; 17 maintainers = with maintainers; [ nand0p ]; 18 }; 19}