pythonPackages.pyuv: refactor move to python-modules
This commit is contained in:
parent
36be37f7f2
commit
f4e04780a2
29
pkgs/development/python-modules/pyuv/default.nix
Normal file
29
pkgs/development/python-modules/pyuv/default.nix
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
{ stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchurl
|
||||||
|
, isPyPy
|
||||||
|
, pkgs
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pyuv";
|
||||||
|
version = "1.2.0";
|
||||||
|
disabled = isPyPy; # see https://github.com/saghul/pyuv/issues/49
|
||||||
|
|
||||||
|
src = pkgs.fetchurl {
|
||||||
|
url = "https://github.com/saghul/pyuv/archive/${pname}-${version}.tar.gz";
|
||||||
|
sha256 = "19yl1l5l6dq1xr8xcv6dhx1avm350nr4v2358iggcx4ma631rycx";
|
||||||
|
};
|
||||||
|
|
||||||
|
patches = [ ./pyuv-external-libuv.patch ];
|
||||||
|
|
||||||
|
buildInputs = [ pkgs.libuv ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Python interface for libuv";
|
||||||
|
homepage = https://github.com/saghul/pyuv;
|
||||||
|
repositories.git = git://github.com/saghul/pyuv.git;
|
||||||
|
license = licenses.mit;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -4077,26 +4077,7 @@ in {
|
|||||||
|
|
||||||
user-agents = callPackage ../development/python-modules/user-agents { };
|
user-agents = callPackage ../development/python-modules/user-agents { };
|
||||||
|
|
||||||
pyuv = buildPythonPackage rec {
|
pyuv = callPackage ../development/python-modules/pyuv { };
|
||||||
name = "pyuv-1.2.0";
|
|
||||||
disabled = isPyPy; # see https://github.com/saghul/pyuv/issues/49
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "https://github.com/saghul/pyuv/archive/${name}.tar.gz";
|
|
||||||
sha256 = "19yl1l5l6dq1xr8xcv6dhx1avm350nr4v2358iggcx4ma631rycx";
|
|
||||||
};
|
|
||||||
|
|
||||||
patches = [ ../development/python-modules/pyuv-external-libuv.patch ];
|
|
||||||
|
|
||||||
buildInputs = with self; [ pkgs.libuv ];
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "Python interface for libuv";
|
|
||||||
homepage = https://github.com/saghul/pyuv;
|
|
||||||
repositories.git = git://github.com/saghul/pyuv.git;
|
|
||||||
license = licenses.mit;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
vega_datasets = callPackage ../development/python-modules/vega_datasets { };
|
vega_datasets = callPackage ../development/python-modules/vega_datasets { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user