python3Packages.fountains: init at 0.2.1

This commit is contained in:
Fabian Affolter 2021-03-06 21:44:29 +01:00
parent 7cdb732449
commit e83c692f97
2 changed files with 32 additions and 0 deletions

@ -0,0 +1,30 @@
{ lib
, buildPythonPackage
, fetchPypi
, bitlist
}:
buildPythonPackage rec {
pname = "fountains";
version = "0.2.1";
src = fetchPypi {
inherit pname version;
sha256 = "0jk5y099g6ggaq5lwp0jlg4asyhcdxnl3him3ibmzc1k9nnknp30";
};
propagatedBuildInputs = [
bitlist
];
# Project has no test
doCheck = false;
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 ];
};
}

@ -2446,6 +2446,8 @@ in {
foundationdb60 = callPackage ../servers/foundationdb/python.nix { foundationdb = pkgs.foundationdb60; };
foundationdb61 = callPackage ../servers/foundationdb/python.nix { foundationdb = pkgs.foundationdb61; };
fountains = callPackage ../development/python-modules/fountains { };
foxdot = callPackage ../development/python-modules/foxdot { };
fpdf = callPackage ../development/python-modules/fpdf { };