Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / fountains / default.nix
blobd6efde228fbdccc9f4e8676c06a3aa5a535c159b
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , setuptools
5 , wheel
6 , bitlist
7 , pythonOlder
8 }:
10 buildPythonPackage rec {
11   pname = "fountains";
12   version = "2.2.0";
13   format = "pyproject";
15   disabled = pythonOlder "3.7";
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-MhOQ4pemxmjfp7Uy5hLA8i8BBI5QbvD4EjEcKMM/u3I=";
20   };
22   nativeBuildInputs = [
23     setuptools
24     wheel
25   ];
27   propagatedBuildInputs = [
28     bitlist
29   ];
31   # Module has no test
32   doCheck = false;
34   pythonImportsCheck = [
35     "fountains"
36   ];
38   meta = with lib; {
39     description = "Python library for generating and embedding data for unit testing";
40     homepage = "https://github.com/reity/fountains";
41     license = with licenses; [ mit ];
42     maintainers = with maintainers; [ fab ];
43   };