blob: d5191719f774bd2a94f36641a09711fd6444684f (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "nine";
version = "1.2.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-NSp9/hGVO39NEoqEeuAe50sdnfyVL4Lzyx8dvUHmbKk=";
};
meta = with lib; {
description = "Let's write Python 3 right now!";
homepage = "https://github.com/nandoflorestan/nine";
license = licenses.free;
};
}
|