python3Packages.statsd: 3.3.0 -> 4.0.1

This commit is contained in:
Martin Weinelt 2022-12-30 20:13:49 +01:00
parent e207360d51
commit 00a1031c62

View file

@ -1,19 +1,25 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, setuptools
, nose , nose
, mock , mock
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "statsd"; pname = "statsd";
version = "3.3.0"; version = "4.0.1";
format = "pyproject";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "07yxnlalvcglgwa9pjs1clwrmwx7a4575jai7q05jz3g4i6dprp3"; hash = "sha256-mXY9qBv+qNr2s9ItEarMsBqND1LqUh2qs351ikyn0Sg=";
}; };
nativeBuildInputs = [
setuptools
];
checkInputs = [ nose mock ]; checkInputs = [ nose mock ];
patchPhase = '' patchPhase = ''