11 buildPythonPackage rec {
12 pname = "smart-meter-texas";
14 format = "setuptools";
16 disabled = pythonOlder "3.6";
18 src = fetchFromGitHub {
19 owner = "grahamwetzler";
20 repo = "smart-meter-texas";
21 rev = "refs/tags/v${version}";
22 hash = "sha256-8htd5fLrtkaVlSEm+RB7tWA5YZkcAOjAXVNzZiMwP7k=";
26 substituteInPlace setup.py \
27 --replace "pytest-runner" ""
30 propagatedBuildInputs = [
37 # no tests implemented
41 description = "Connect to and retrieve data from the unofficial Smart Meter Texas API";
42 homepage = "https://github.com/grahamwetzler/smart-meter-texas";
43 license = licenses.mit;
44 maintainers = with maintainers; [ dotlambda ];