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