1{ lib 2, buildPythonPackage 3, fetchPypi 4, bitlist 5}: 6 7buildPythonPackage rec { 8 pname = "fountains"; 9 version = "1.1.1"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "fbf4e2cb11d60d3bafca5bb7c01c254d08a5541ed7ddfe00ef975eb173fb75a4"; 14 }; 15 16 propagatedBuildInputs = [ 17 bitlist 18 ]; 19 20 # Project has no test 21 doCheck = false; 22 23 pythonImportsCheck = [ "fountains" ]; 24 25 meta = with lib; { 26 description = "Python library for generating and embedding data for unit testing"; 27 homepage = "https://github.com/reity/fountains"; 28 license = with licenses; [ mit ]; 29 maintainers = with maintainers; [ fab ]; 30 }; 31}