diff options
| author | github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> | 2022-01-03 00:08:40 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-03 00:08:40 +0000 |
| commit | 4acff2bbdedb6892f4fe6225d77aa184a4500a82 (patch) | |
| tree | 9cf787a372c89c6c14ca99ed83cc7ed3a5dec7a7 /pkgs/development/python-modules/python_statsd | |
| parent | b0c76508ef985738a3b0f58420603b8933e03c12 (diff) | |
| parent | 74f542c42e5bca4f74f53cf7054c8a93d4736f51 (diff) | |
Merge master into haskell-updates
Diffstat (limited to 'pkgs/development/python-modules/python_statsd')
| -rw-r--r-- | pkgs/development/python-modules/python_statsd/default.nix | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/pkgs/development/python-modules/python_statsd/default.nix b/pkgs/development/python-modules/python_statsd/default.nix deleted file mode 100644 index 2aabaec2e14f..000000000000 --- a/pkgs/development/python-modules/python_statsd/default.nix +++ /dev/null @@ -1,28 +0,0 @@ -{ lib -, buildPythonPackage -, fetchPypi -, isPy3k -, mock -, nose -, coverage -}: - -buildPythonPackage rec { - pname = "python-statsd"; - version = "2.1.0"; - disabled = isPy3k; # next release will be py3k compatible - - src = fetchPypi { - inherit pname version; - sha256 = "d2c573d325d0f015b4d79f0d0f8c88dd8413d7b9ef890c09076a9b6089ab301c"; - }; - - buildInputs = [ mock nose coverage ]; - - meta = with lib; { - description = "A client for Etsy's node-js statsd server"; - homepage = "https://github.com/WoLpH/python-statsd"; - license = licenses.bsd3; - }; - -} |
