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