depot/third_party/nixpkgs/pkgs/development/python-modules/pyatome/default.nix
Default email 5083ee08a2 Project import generated by Copybara.
GitOrigin-RevId: 10ecda252ce1b3b1d6403caeadbcc8f30d5ab796
2022-09-30 06:47:45 -05:00

42 lines
771 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, requests
, simplejson
, fake-useragent
, pythonOlder
}:
buildPythonPackage rec {
pname = "pyatome";
version = "0.1.2";
format = "setuptools";
disabled = pythonOlder "3.7";
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 = with lib; {
description = "Python module to get energy consumption data from Atome";
homepage = "https://github.com/baqs/pyAtome";
license = licenses.asl20;
maintainers = with maintainers; [ uvnikita ];
};
}