nixpkgs/pkgs/development/python-modules/types-ujson/default.nix

29 lines
537 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "types-ujson";
version = "5.8.0.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-KxQ4gkirTNH176jEZHYREll8zVfA2EI49zYxq+DiDP0=";
};
doCheck = false;
pythonImportsCheck = [
"ujson-stubs"
];
meta = with lib; {
description = "Typing stubs for ujson";
homepage = "https://github.com/python/typeshed";
license = licenses.asl20;
maintainers = with maintainers; [ centromere ];
};
}