Commit 11f5d510 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python313Packages.fountains: 2.2.0 -> 3.0.0

parent 33fde3aa
Loading
Loading
Loading
Loading
+6 −13
Original line number Diff line number Diff line
@@ -3,29 +3,22 @@
  buildPythonPackage,
  fetchPypi,
  setuptools,
  wheel,
  bitlist,
  pythonOlder,
}:

buildPythonPackage rec {
  pname = "fountains";
  version = "2.2.0";
  format = "pyproject";

  disabled = pythonOlder "3.7";
  version = "3.0.0";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-MhOQ4pemxmjfp7Uy5hLA8i8BBI5QbvD4EjEcKMM/u3I=";
    hash = "sha256-kRu+jCKRfkH0URNuYvTF3TF1WslyfeE2EHE1VLCMyys=";
  };

  nativeBuildInputs = [
    setuptools
    wheel
  ];
  build-system = [ setuptools ];

  propagatedBuildInputs = [ bitlist ];
  dependencies = [ bitlist ];

  # Module has no test
  doCheck = false;
@@ -35,7 +28,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Python library for generating and embedding data for unit testing";
    homepage = "https://github.com/reity/fountains";
    license = with licenses; [ mit ];
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };
}