pythonPackages.python-etcd: refactor move to python-modules
This commit is contained in:
parent
952f5b808b
commit
31e46d9d1c
37
pkgs/development/python-modules/python-etcd/default.nix
Normal file
37
pkgs/development/python-modules/python-etcd/default.nix
Normal file
@ -0,0 +1,37 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, nose
|
||||
, mock
|
||||
, pyopenssl
|
||||
, urllib3
|
||||
, dnspython
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "python-etcd";
|
||||
version = "0.4.3";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "cf53262b3890d185fe637eed15fe39c8d7a8261864ddcd7037b22c961456d7fc";
|
||||
};
|
||||
|
||||
buildInputs = [ nose mock pyopenssl ];
|
||||
|
||||
propagatedBuildInputs = [ urllib3 dnspython ];
|
||||
|
||||
postPatch = ''
|
||||
sed -i '19s/dns/"dnspython"/' setup.py
|
||||
'';
|
||||
|
||||
# Some issues with etcd not in path even though most tests passed
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A python client for Etcd";
|
||||
homepage = https://github.com/jplana/python-etcd;
|
||||
license = licenses.mit;
|
||||
};
|
||||
|
||||
}
|
@ -3499,32 +3499,7 @@ in {
|
||||
|
||||
python-wifi = callPackage ../development/python-modules/python-wifi { };
|
||||
|
||||
python-etcd = buildPythonPackage rec {
|
||||
name = "python-etcd-${version}";
|
||||
version = "0.4.3";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/p/python-etcd/${name}.tar.gz";
|
||||
sha256 = "cf53262b3890d185fe637eed15fe39c8d7a8261864ddcd7037b22c961456d7fc";
|
||||
};
|
||||
|
||||
buildInputs = with self; [ nose mock pyopenssl ];
|
||||
|
||||
propagatedBuildInputs = with self; [ urllib3 dnspython ];
|
||||
|
||||
postPatch = ''
|
||||
sed -i '19s/dns/"dnspython"/' setup.py
|
||||
'';
|
||||
|
||||
# Some issues with etcd not in path even though most tests passed
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "A python client for Etcd";
|
||||
homepage = https://github.com/jplana/python-etcd;
|
||||
license = licenses.mit;
|
||||
};
|
||||
};
|
||||
python-etcd = callPackage ../development/python-modules/python-etcd { };
|
||||
|
||||
pythonnet = callPackage ../development/python-modules/pythonnet {
|
||||
# `mono >= 4.6` required to prevent crashes encountered with earlier versions.
|
||||
|
Loading…
x
Reference in New Issue
Block a user