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