evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / domeneshop / default.nix
bloba099301f522622b8390d96e244876ab263e56ffa
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   setuptools,
6   urllib3,
7   certifi,
8 }:
10 buildPythonPackage rec {
11   pname = "domeneshop";
12   version = "0.4.4";
13   pyproject = true;
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-UCxIDnhIAkxZ1oQXYRyAMdGgUsUZ6AlYXwsxL49TFAg=";
18   };
20   nativeBuildInputs = [ setuptools ];
22   dependencies = [
23     certifi
24     urllib3
25   ];
27   # There are none
28   doCheck = false;
30   pythonImportsCheck = [ "domeneshop" ];
32   meta = with lib; {
33     changelog = "https://github.com/domeneshop/python-domeneshop/releases/tag/v${version}";
34     description = "Python library for working with the Domeneshop API";
35     homepage = "https://api.domeneshop.no/docs/";
36     license = licenses.mit;
37     maintainers = with maintainers; [ pbsds ];
38   };