1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 poetry-core,
6}:
7
8buildPythonPackage rec {
9 pname = "nine";
10 version = "1.2.0";
11 pyproject = true;
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "sha256-NSp9/hGVO39NEoqEeuAe50sdnfyVL4Lzyx8dvUHmbKk=";
16 };
17
18 build-system = [ poetry-core ];
19
20 meta = with lib; {
21 description = "Let's write Python 3 right now";
22 homepage = "https://github.com/nandoflorestan/nine";
23 license = licenses.free;
24 };
25}