depot/third_party/nixpkgs/pkgs/development/python-modules/testing-common-database/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

21 lines
527 B
Nix

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