pythonPackages.python-statsd: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov 2018-10-27 17:47:35 -04:00
parent d921831bec
commit 265b0c85ac
No known key found for this signature in database
GPG Key ID: 9ED59B0AB1EAF573
2 changed files with 29 additions and 19 deletions

@ -0,0 +1,28 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
, mock
, nose
, coverage
}:
buildPythonPackage rec {
pname = "python-statsd";
version = "1.6.0";
disabled = isPy3k; # next release will be py3k compatible
src = fetchPypi {
inherit pname version;
sha256 = "3d2fc153e0d894aa9983531ef47d20d75bd4ee9fd0e46a9d82f452dde58a0a71";
};
buildInputs = [ mock nose coverage ];
meta = with stdenv.lib; {
description = "A client for Etsy's node-js statsd server";
homepage = https://github.com/WoLpH/python-statsd;
license = licenses.bsd3;
};
}

@ -3912,25 +3912,7 @@ in {
statsmodels = callPackage ../development/python-modules/statsmodels { };
python_statsd = buildPythonPackage rec {
name = "python-statsd-${version}";
version = "1.6.0";
disabled = isPy3k; # next release will be py3k compatible
src = pkgs.fetchurl {
url = "mirror://pypi/p/python-statsd/${name}.tar.gz";
sha256 = "3d2fc153e0d894aa9983531ef47d20d75bd4ee9fd0e46a9d82f452dde58a0a71";
};
buildInputs = with self; [ mock nose coverage ];
meta = {
description = "A client for Etsy's node-js statsd server";
homepage = https://github.com/WoLpH/python-statsd;
license = licenses.bsd3;
};
};
python_statsd = callPackage ../development/python-modules/python_statsd { };
stompclient = buildPythonPackage (rec {
name = "stompclient-0.3.2";