at 23.11-beta 410 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "nine"; 8 version = "1.1.0"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "e8a96b6326341637d25ca9c257c1d2af4033c957946438d9d37bf6eb798d3bbe"; 13 }; 14 15 meta = with lib; { 16 description = "Let's write Python 3 right now!"; 17 homepage = "https://github.com/nandoflorestan/nine"; 18 license = licenses.free; 19 }; 20 21}