python3Packages.fountains: init at 0.2.1
This commit is contained in:
parent
7cdb732449
commit
e83c692f97
30
pkgs/development/python-modules/fountains/default.nix
Normal file
30
pkgs/development/python-modules/fountains/default.nix
Normal file
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user