evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / derpconf / default.nix
bloba3fbc61e2c04232f8eff5fa00a8f1a6f9d2cbd0b
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   six,
6   pythonOlder,
7 }:
9 buildPythonPackage rec {
10   pname = "derpconf";
11   version = "0.8.4";
12   format = "setuptools";
14   disabled = pythonOlder "3.9";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-66MOqcWIiqJrORJDgAH5iUblHyqJvuf9DIBN56XjKwU=";
19   };
21   propagatedBuildInputs = [ six ];
23   pythonImportsCheck = [ "derpconf" ];
25   meta = with lib; {
26     description = "Module to abstract loading configuration files for your app";
27     homepage = "https://github.com/globocom/derpconf";
28     changelog = "https://github.com/globocom/derpconf/releases/tag/${version}";
29     license = licenses.mit;
30     maintainers = [ ];
31   };