python312Packages.namex: 0.0.8 -> 0.0.9 (#403105)

This commit is contained in:
Gaétan Lepage
2025-05-01 00:04:23 +02:00
committed by GitHub
@@ -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 = {