pythonPackages.nine: refactor move to python-modules
This commit is contained in:
committed by
Frederik Rietdijk
parent
3e1f1f76bb
commit
976162ed90
21
pkgs/development/python-modules/nine/default.nix
Normal file
21
pkgs/development/python-modules/nine/default.nix
Normal file
@@ -0,0 +1,21 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "nine";
|
||||
version = "0.3.4";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1zrsbm0hajfvklkhgysp81hy632a3bdakp31m0lcpd9xbp5265zy";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Let's write Python 3 right now!";
|
||||
homepage = "https://github.com/nandoflorestan/nine";
|
||||
license = licenses.free;
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user