2017-02-26 10:03:27 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
name = pname + "-" + version;
|
|
|
|
pname = "pyext";
|
2017-05-27 12:24:47 +00:00
|
|
|
version = "0.6";
|
2017-02-26 10:03:27 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2017-05-27 12:24:47 +00:00
|
|
|
sha256 = "6c406cf71b991e1fc5a7f963d3a289525bce5e7ad1c43b697d9f5223185fcaef";
|
2017-02-26 10:03:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Simple Python extensions.";
|
2017-08-01 20:03:30 +00:00
|
|
|
homepage = https://github.com/kirbyfan64/PyExt;
|
2017-02-26 10:03:27 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ edwtjo ];
|
|
|
|
};
|
|
|
|
}
|