summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pyatome/default.nix
blob: c0c1b0ebe4e69357085ab95210e855a646f6073e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
  lib,
  buildPythonPackage,
  fetchPypi,
  requests,
  simplejson,
  fake-useragent,
}:

buildPythonPackage rec {
  pname = "pyatome";
  version = "0.1.2";
  format = "setuptools";

  src = fetchPypi {
    pname = "pyAtome";
    inherit version;
    hash = "sha256-DGkgW6emh/esZa/alUjBbpLXlU4EVIPkysn9a0LgcJ4=";
  };

  propagatedBuildInputs = [
    requests
    simplejson
    fake-useragent
  ];

  # No tests in PyPI tarballs
  doCheck = false;

  pythonImportsCheck = [ "pyatome" ];

  meta = {
    description = "Python module to get energy consumption data from Atome";
    mainProgram = "pyatome";
    homepage = "https://github.com/baqs/pyAtome";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ uvnikita ];
  };
}