mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
Merge pull request #57128 from FlorianFranzen/pyext
pythonPackages.pyext: 0.6 -> 0.8
This commit is contained in:
commit
7435c633f6
@ -1,17 +1,22 @@
|
|||||||
{ stdenv, buildPythonPackage, fetchPypi }:
|
{ stdenv, buildPythonPackage, fetchFromGitHub }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
name = pname + "-" + version;
|
|
||||||
pname = "pyext";
|
pname = "pyext";
|
||||||
version = "0.6";
|
version = "0.8";
|
||||||
|
|
||||||
src = fetchPypi {
|
# Latest release not on Pypi or tagged since 2015
|
||||||
inherit pname version;
|
src = fetchFromGitHub {
|
||||||
sha256 = "6c406cf71b991e1fc5a7f963d3a289525bce5e7ad1c43b697d9f5223185fcaef";
|
owner = "kirbyfan64";
|
||||||
|
repo = "PyExt";
|
||||||
|
rev = "1e018b12752ceb279f11aee123ed773d63dcec7e";
|
||||||
|
sha256 = "16km897ng6lgjs39hv83xragdxh0mhyw6ds0qkm21cyci1k5m1vm";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Has no test suite
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Simple Python extensions.";
|
description = "Simple Python extensions";
|
||||||
homepage = https://github.com/kirbyfan64/PyExt;
|
homepage = https://github.com/kirbyfan64/PyExt;
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ edwtjo ];
|
maintainers = with maintainers; [ edwtjo ];
|
||||||
|
Loading…
Reference in New Issue
Block a user