1{ lib
2, buildPythonPackage
3, fetchPypi
4, setuptools
5, bitlist
6, pythonOlder
7}:
8
9buildPythonPackage rec {
10 pname = "fountains";
11 version = "2.1.0";
12 format = "pyproject";
13
14 disabled = pythonOlder "3.7";
15
16 src = fetchPypi {
17 inherit pname version;
18 hash = "sha256-gYVguXMVrXxra/xy+R4RXVk9yDGKiKE8u3qWUk8sjt4=";
19 };
20
21 nativeBuildInputs = [
22 setuptools
23 ];
24
25 propagatedBuildInputs = [
26 bitlist
27 ];
28
29 # Module has no test
30 doCheck = false;
31
32 pythonImportsCheck = [
33 "fountains"
34 ];
35
36 meta = with lib; {
37 description = "Python library for generating and embedding data for unit testing";
38 homepage = "https://github.com/reity/fountains";
39 license = with licenses; [ mit ];
40 maintainers = with maintainers; [ fab ];
41 };
42}