Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 21 lines 420 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "nine"; 8 version = "1.0.0"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "3064fbeb512e756a415606a1399f49c22de867d5ac7e2b6c91c35e757d3af42d"; 13 }; 14 15 meta = with stdenv.lib; { 16 description = "Let's write Python 3 right now!"; 17 homepage = "https://github.com/nandoflorestan/nine"; 18 license = licenses.free; 19 }; 20 21}