pythonPackages.testing-common-database: init at 2.0.3

This commit is contained in:
Jaakko Luttinen 2019-11-27 19:01:05 +02:00
parent a6b361d627
commit 11da668a9f
No known key found for this signature in database
GPG key ID: 7B1CE13152E6B964
2 changed files with 23 additions and 0 deletions

View file

@ -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 ];
};
}

View file

@ -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 { };