Files
nixpkgs/pkgs/development/python-modules/fountains/default.nix
2025-10-13 13:49:20 +02:00

35 lines
672 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
bitlist,
}:
buildPythonPackage rec {
pname = "fountains";
version = "3.0.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-gGYmHvlD9cmivPtM/2sKW36FvUzk5FxYBgZfLUX2lIg=";
};
build-system = [ setuptools ];
dependencies = [ bitlist ];
# Module has no test
doCheck = false;
pythonImportsCheck = [ "fountains" ];
meta = with lib; {
description = "Python library for generating and embedding data for unit testing";
homepage = "https://github.com/reity/fountains";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}