evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / types-docopt / default.nix
blob284fa0ea0fcce615dcb77f6709660147a964ad63
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "types-docopt";
9   version = "0.6.11.4";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-mRpkwVaTEMIkCuc0/SwQYnq7ikr6875axvTv+aYB8xo=";
15   };
17   # Module has no tests
18   doCheck = false;
20   pythonImportsCheck = [ "docopt-stubs" ];
22   meta = with lib; {
23     description = "Typing stubs for docopt";
24     homepage = "https://pypi.org/project/types-docopt/";
25     license = with licenses; [ asl20 ];
26     maintainers = with maintainers; [ fab ];
27   };