1{ lib, buildPythonPackage, fetchFromGitHub }:
2
3buildPythonPackage {
4 pname = "pyext";
5 version = "0.8";
6
7 # Latest release not on Pypi or tagged since 2015
8 src = fetchFromGitHub {
9 owner = "kirbyfan64";
10 repo = "PyExt";
11 rev = "1e018b12752ceb279f11aee123ed773d63dcec7e";
12 sha256 = "16km897ng6lgjs39hv83xragdxh0mhyw6ds0qkm21cyci1k5m1vm";
13 };
14
15 # Has no test suite
16 doCheck = false;
17
18 meta = with lib; {
19 description = "Simple Python extensions";
20 homepage = "https://github.com/kirbyfan64/PyExt";
21 license = licenses.mit;
22 maintainers = with maintainers; [ edwtjo ];
23 };
24}