evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / schiene / default.nix
blob20267d300d69a4b4742634072f0246c9be2a2fb4
2   lib,
3   beautifulsoup4,
4   buildPythonPackage,
5   fetchPypi,
6   pythonOlder,
7   requests,
8 }:
10 buildPythonPackage rec {
11   pname = "schiene";
12   version = "0.26";
13   format = "setuptools";
15   disabled = pythonOlder "3.7";
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-sCaVrHqQZwAZDXIjh4Rg9ZT/EQSbrOPdSyT8oofCsmA=";
20   };
22   propagatedBuildInputs = [
23     requests
24     beautifulsoup4
25   ];
27   # Module has no tests
28   doCheck = false;
30   pythonImportsCheck = [ "schiene" ];
32   meta = with lib; {
33     description = "Python library for interacting with Bahn.de";
34     homepage = "https://github.com/kennell/schiene";
35     license = with licenses; [ mit ];
36     maintainers = with maintainers; [ fab ];
37   };