2021-03-06 20:44:29 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, bitlist
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "fountains";
|
2021-09-25 06:40:01 +00:00
|
|
|
version = "1.1.0";
|
2021-03-06 20:44:29 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-09-25 06:40:01 +00:00
|
|
|
sha256 = "47c28e598cc3a723327daee28c757de3a40f4d8eb48e6be37081932c1d00fa6f";
|
2021-03-06 20:44:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
bitlist
|
|
|
|
];
|
|
|
|
|
|
|
|
# Project has no test
|
|
|
|
doCheck = false;
|
2021-09-24 09:25:26 +00:00
|
|
|
|
2021-03-06 20:44:29 +00:00
|
|
|
pythonImportsCheck = [ "fountains" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Python library for generating and embedding data for unit testing";
|
|
|
|
homepage = "https://github.com/reity/fountains";
|
|
|
|
license = with licenses; [ mit ];
|
|
|
|
maintainers = with maintainers; [ fab ];
|
|
|
|
};
|
|
|
|
}
|