python312Packages.dash-renderer: remove (#369714)
[NixPkgs.git] / pkgs / development / python-modules / nine / default.nix
blob70caf70ca0653b690c47e180d1d0c14da1250426
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "nine";
9   version = "1.1.0";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "e8a96b6326341637d25ca9c257c1d2af4033c957946438d9d37bf6eb798d3bbe";
15   };
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   };