2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv
|
2018-10-17 20:13:24 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "nine";
|
2020-06-06 07:47:19 +01:00
|
|
|
version = "1.1.0";
|
2018-10-17 20:13:24 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-06-06 07:47:19 +01:00
|
|
|
sha256 = "e8a96b6326341637d25ca9c257c1d2af4033c957946438d9d37bf6eb798d3bbe";
|
2018-10-17 20:13:24 +01:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-10-17 20:13:24 +01:00
|
|
|
description = "Let's write Python 3 right now!";
|
|
|
|
homepage = "https://github.com/nandoflorestan/nine";
|
|
|
|
license = licenses.free;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|