ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / peaqevcore / default.nix
blob0bc838839e6c8cca4cd18c044f94720d7231dab5
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pythonOlder
5 }:
7 buildPythonPackage rec {
8   pname = "peaqevcore";
9   version = "7.3.2";
10   format = "setuptools";
12   disabled = pythonOlder "3.7";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-+DihyuSzqFoQvDnlYUyvdyjravxMcU8PgYEq2FY2o9g=";
17   };
19   postPatch = ''
20     substituteInPlace setup.py \
21       --replace "pytest" ""
22   '';
24   # Tests are not shipped and source is not tagged
25   # https://github.com/elden1337/peaqev-core/issues/4
26   doCheck = false;
28   pythonImportsCheck = [
29     "peaqevcore"
30   ];
32   meta = with lib; {
33     description = "Library for interacting with Peaqev car charging";
34     homepage = "https://github.com/elden1337/peaqev-core";
35     license = with licenses; [ mit ];
36     maintainers = with maintainers; [ fab ];
37   };