pythonPackages.execnet: refactor move to python-modules
This commit is contained in:
parent
3c36c02ca5
commit
9ffd373ff1
42
pkgs/development/python-modules/execnet/default.nix
Normal file
42
pkgs/development/python-modules/execnet/default.nix
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
{ stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, pytest
|
||||||
|
, setuptools_scm
|
||||||
|
, apipkg
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "execnet";
|
||||||
|
version = "1.4.1";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1rpk1vyclhg911p3hql0m0nrpq7q7mysxnaaw6vs29cpa6kx8vgn";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ pytest setuptools_scm ];
|
||||||
|
propagatedBuildInputs = [ apipkg ];
|
||||||
|
|
||||||
|
# remove vbox tests
|
||||||
|
postPatch = ''
|
||||||
|
rm -v testing/test_termination.py
|
||||||
|
rm -v testing/test_channel.py
|
||||||
|
rm -v testing/test_xspec.py
|
||||||
|
rm -v testing/test_gateway.py
|
||||||
|
'';
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
py.test testing
|
||||||
|
'';
|
||||||
|
|
||||||
|
__darwinAllowLocalNetworking = true;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Rapid multi-Python deployment";
|
||||||
|
license = licenses.gpl2;
|
||||||
|
homepage = "http://codespeak.net/execnet";
|
||||||
|
maintainers = with maintainers; [ nand0p ];
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -1742,34 +1742,7 @@ in {
|
|||||||
|
|
||||||
eyeD3 = callPackage ../development/python-modules/eyed3 { };
|
eyeD3 = callPackage ../development/python-modules/eyed3 { };
|
||||||
|
|
||||||
execnet = buildPythonPackage rec {
|
execnet = callPackage ../development/python-modules/execnet { };
|
||||||
name = "${pname}-${version}";
|
|
||||||
pname = "execnet";
|
|
||||||
version = "1.4.1";
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/e/${pname}/${name}.tar.gz";
|
|
||||||
sha256 = "1rpk1vyclhg911p3hql0m0nrpq7q7mysxnaaw6vs29cpa6kx8vgn";
|
|
||||||
};
|
|
||||||
buildInputs = with self; [ pytest setuptools_scm ];
|
|
||||||
propagatedBuildInputs = with self; [ apipkg ];
|
|
||||||
# remove vbox tests
|
|
||||||
postPatch = ''
|
|
||||||
rm -v testing/test_termination.py
|
|
||||||
rm -v testing/test_channel.py
|
|
||||||
rm -v testing/test_xspec.py
|
|
||||||
rm -v testing/test_gateway.py
|
|
||||||
'';
|
|
||||||
checkPhase = ''
|
|
||||||
py.test testing
|
|
||||||
'';
|
|
||||||
__darwinAllowLocalNetworking = true;
|
|
||||||
meta = {
|
|
||||||
description = "Rapid multi-Python deployment";
|
|
||||||
license = licenses.gpl2;
|
|
||||||
homepage = "http://codespeak.net/execnet";
|
|
||||||
maintainers = with maintainers; [ nand0p ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
ezdxf = callPackage ../development/python-modules/ezdxf {};
|
ezdxf = callPackage ../development/python-modules/ezdxf {};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user