pythonPackages.pyext: init at 0.7

This commit is contained in:
Edward Tjörnhammar 2017-02-26 11:03:27 +01:00
parent 5e44b5e299
commit 421db29915
No known key found for this signature in database
GPG key ID: 7B82CE4A866B6845
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
name = pname + "-" + version;
pname = "pyext";
version = "0.7";
src = fetchPypi {
inherit pname version;
sha256 = "1pvwjkrjqajzh4wiiw1mzqp0bb81cqc2gk23nj24m32fpqssc676";
};
meta = with stdenv.lib; {
description = "Simple Python extensions.";
homepage = "https://github.com/kirbyfan64/PyExt";
license = licenses.mit;
maintainers = with maintainers; [ edwtjo ];
};
}

View file

@ -20185,6 +20185,8 @@ in {
};
};
pyext = callPackage ../development/python-modules/pyext { };
pyfantom = buildPythonPackage rec {
name = "pyfantom-${version}";
version = "unstable-2013-12-18";