Unverified Commit c59a71f3 authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

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

parents d029ce5b 1b1047da
Loading
Loading
Loading
Loading
+4 −6
Original line number Diff line number Diff line
@@ -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 = {