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
2 changed files with 29 additions and 19 deletions

View File

@@ -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;
};
}