My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/types-tabulate/default.nix

28 lines
551 B

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "types-tabulate";
version = "0.8.9";
src = fetchPypi {
inherit pname version;
hash = "sha256-L8P6T+GFOsmHz1Do1FmeP+RG3VMGT+hqRqQHqY6fwE8=";
};
# Module doesn't have tests
doCheck = false;
pythonImportsCheck = [
"tabulate-stubs"
];
meta = with lib; {
description = "Typing stubs for tabulate";
homepage = "https://github.com/python/typeshed";
license = licenses.asl20;
maintainers = with maintainers; [ jpetrucciani ];
};
}