pythonPackages.testing-common-database: init at 2.0.3
This commit is contained in:
parent
a6b361d627
commit
11da668a9f
|
@ -0,0 +1,21 @@
|
|||
{ lib, buildPythonPackage, fetchPypi }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "testing.common.database";
|
||||
version = "2.0.3";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0wvdv0frl7xib05sixjv9m6jywaa2wdhdhsqqdfk45akk2r80pcn";
|
||||
};
|
||||
|
||||
# There are no unit tests
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "utilities for testing.* packages";
|
||||
homepage = "https://github.com/tk0miya/testing.common.database";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ jluttine ];
|
||||
};
|
||||
}
|
|
@ -7120,6 +7120,8 @@ in {
|
|||
|
||||
textfsm = callPackage ../development/python-modules/textfsm { };
|
||||
|
||||
testing-common-database = callPackage ../development/python-modules/testing-common-database { };
|
||||
|
||||
testpath = callPackage ../development/python-modules/testpath { };
|
||||
|
||||
testrepository = callPackage ../development/python-modules/testrepository { };
|
||||
|
|
Loading…
Reference in New Issue