13 buildPythonPackage rec {
14 pname = "smart-meter-texas";
18 disabled = pythonOlder "3.6";
20 src = fetchFromGitHub {
21 owner = "grahamwetzler";
22 repo = "smart-meter-texas";
23 rev = "refs/tags/v${version}";
24 hash = "sha256-dHWcYrBtmKdEIU45rMy4KvoPX88hnRpd4KBlbJaNvgI=";
28 substituteInPlace setup.py \
29 --replace-fail "pytest-runner" ""
32 build-system = [ setuptools ];
41 # no tests implemented
45 description = "Connect to and retrieve data from the unofficial Smart Meter Texas API";
46 homepage = "https://github.com/grahamwetzler/smart-meter-texas";
47 license = licenses.mit;
48 maintainers = with maintainers; [ dotlambda ];