blob: 153f97ab50fe0d08d2a6a6e760ed438e5d1ec1b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
{
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 = {
description = "Python library for generating and embedding data for unit testing";
homepage = "https://github.com/reity/fountains";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
|