nixpkgs/pkgs/development/python-modules/pyext/default.nix

20 lines
510 B
Nix
Raw Normal View History

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