pythonPackages.pyext: init at 0.7
This commit is contained in:
parent
5e44b5e299
commit
421db29915
19
pkgs/development/python-modules/pyext/default.nix
Normal file
19
pkgs/development/python-modules/pyext/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -20185,6 +20185,8 @@ in {
|
||||
};
|
||||
};
|
||||
|
||||
pyext = callPackage ../development/python-modules/pyext { };
|
||||
|
||||
pyfantom = buildPythonPackage rec {
|
||||
name = "pyfantom-${version}";
|
||||
version = "unstable-2013-12-18";
|
||||
|
Loading…
Reference in New Issue
Block a user