about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyext/default.nix
blob: 55aaa59d6b2e465da29d7bd7dae163096350d6ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
    name = pname + "-" + version;
    pname = "pyext";
    version = "0.6";

    src = fetchPypi {
      inherit pname version;
      sha256 = "6c406cf71b991e1fc5a7f963d3a289525bce5e7ad1c43b697d9f5223185fcaef";
    };

    meta = with stdenv.lib; {
      description = "Simple Python extensions.";
      homepage = https://github.com/kirbyfan64/PyExt;
      license = licenses.mit;
      maintainers = with maintainers; [ edwtjo ];
    };
}