pythonPackages.genpy: init at 2016.1.3

This commit is contained in:
Chris Ostrouchov 2019-04-15 17:11:29 -04:00
parent b78f689444
commit 9f2bea9304
No known key found for this signature in database
GPG key ID: 9ED59B0AB1EAF573
2 changed files with 31 additions and 0 deletions

View 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 ];
};
}

View file

@ -5380,6 +5380,8 @@ in {
gensim = callPackage ../development/python-modules/gensim { };
genpy = callPackage ../development/python-modules/genpy { };
cymem = callPackage ../development/python-modules/cymem { };
ftfy = callPackage ../development/python-modules/ftfy { };