33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
39 lines
829 B
Nix
39 lines
829 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, setuptools
|
|
, nose
|
|
, mock
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "statsd";
|
|
version = "4.0.1";
|
|
format = "pyproject";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-mXY9qBv+qNr2s9ItEarMsBqND1LqUh2qs351ikyn0Sg=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
];
|
|
|
|
nativeCheckInputs = [ nose mock ];
|
|
|
|
patchPhase = ''
|
|
# Failing test: ERROR: statsd.tests.test_ipv6_resolution_udp
|
|
sed -i 's/test_ipv6_resolution_udp/noop/' statsd/tests.py
|
|
# well this is a noop, but so it was before
|
|
sed -i 's/assert_called_once()/called/' statsd/tests.py
|
|
'';
|
|
|
|
meta = with lib; {
|
|
maintainers = with maintainers; [ domenkozar ];
|
|
description = "A simple statsd client";
|
|
license = licenses.mit;
|
|
homepage = "https://github.com/jsocol/pystatsd";
|
|
};
|
|
|
|
}
|