pythonPackages.genpy: init at 2016.1.3
This commit is contained in:
parent
b78f689444
commit
9f2bea9304
29
pkgs/development/python-modules/genpy/default.nix
Normal file
29
pkgs/development/python-modules/genpy/default.nix
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, pytools
|
||||||
|
, numpy
|
||||||
|
, pytest
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "genpy";
|
||||||
|
version = "2016.1.3";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1c11726f1e8ace8bbdfc87816403c9a59f53a8c3d45c99187ae17c9725d87a91";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
pytools
|
||||||
|
numpy
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "C/C++ source generation from an AST";
|
||||||
|
homepage = https://github.com/inducer/genpy;
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = [ maintainers.costrouc ];
|
||||||
|
};
|
||||||
|
}
|
@ -5380,6 +5380,8 @@ in {
|
|||||||
|
|
||||||
gensim = callPackage ../development/python-modules/gensim { };
|
gensim = callPackage ../development/python-modules/gensim { };
|
||||||
|
|
||||||
|
genpy = callPackage ../development/python-modules/genpy { };
|
||||||
|
|
||||||
cymem = callPackage ../development/python-modules/cymem { };
|
cymem = callPackage ../development/python-modules/cymem { };
|
||||||
|
|
||||||
ftfy = callPackage ../development/python-modules/ftfy { };
|
ftfy = callPackage ../development/python-modules/ftfy { };
|
||||||
|
Loading…
Reference in New Issue
Block a user