diff --git a/pkgs/development/python-modules/namex/default.nix b/pkgs/development/python-modules/namex/default.nix index 4e7fadf84796..13b161d2e267 100644 --- a/pkgs/development/python-modules/namex/default.nix +++ b/pkgs/development/python-modules/namex/default.nix @@ -3,28 +3,26 @@ buildPythonPackage, fetchPypi, setuptools, - wheel, }: buildPythonPackage rec { pname = "namex"; - version = "0.0.8"; + version = "0.0.9"; pyproject = true; - # Not using fetchFromGitHub because the repo does not have any tag/release. + # Not using fetchFromGitHub because the repo does not have any tag/release src = fetchPypi { inherit pname version; - hash = "sha256-MqUPbFZcC7EKp2KYyVlQer3A6FDv4IXcOPNED8s6qQs="; + hash = "sha256-it/qnaXOpb6PTmMjSbRmnjAXLHhZ4f2XRZ/fOxdGklM="; }; build-system = [ setuptools - wheel ]; pythonImportsCheck = [ "namex" ]; - # This packages has no tests. + # No tests doCheck = false; meta = {