nixpkgs/pkgs/development/python-modules/nine/default.nix
2020-06-11 10:00:02 +02:00

22 lines
420 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "nine";
version = "1.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "e8a96b6326341637d25ca9c257c1d2af4033c957946438d9d37bf6eb798d3bbe";
};
meta = with stdenv.lib; {
description = "Let's write Python 3 right now!";
homepage = "https://github.com/nandoflorestan/nine";
license = licenses.free;
};
}