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

25 lines
640 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchFromGitHub }:
2017-02-26 10:03:27 +00:00
2019-08-13 21:52:01 +00:00
buildPythonPackage {
2017-02-26 10:03:27 +00:00
pname = "pyext";
2019-03-09 16:34:43 +00:00
version = "0.8";
2017-02-26 10:03:27 +00:00
2019-03-09 16:34:43 +00:00
# Latest release not on Pypi or tagged since 2015
src = fetchFromGitHub {
owner = "kirbyfan64";
repo = "PyExt";
rev = "1e018b12752ceb279f11aee123ed773d63dcec7e";
sha256 = "16km897ng6lgjs39hv83xragdxh0mhyw6ds0qkm21cyci1k5m1vm";
2017-02-26 10:03:27 +00:00
};
2019-03-09 16:34:43 +00:00
# Has no test suite
doCheck = false;
meta = with lib; {
2019-03-09 16:34:43 +00:00
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 ];
};
}