evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / remctl / default.nix
blob3e672e9e56d28ff250494b54833970565e3e0d9a
2   lib,
3   buildPythonPackage,
4   pythonOlder,
5   remctl-c, # remctl from pkgs, not from pythonPackages
6   typing,
7 }:
9 buildPythonPackage {
10   inherit (remctl-c)
11     meta
12     pname
13     src
14     version
15     ;
16   setSourceRoot = "sourceRoot=$(echo */python)";
18   buildInputs = [ remctl-c ];
20   propagatedBuildInputs = lib.optionals (pythonOlder "3.5") [ typing ];