My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pyflexit/default.nix

32 lines
656 B

{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
}:
buildPythonPackage rec {
pname = "pyflexit";
version = "0.3";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "Sabesto";
repo = pname;
rev = version;
sha256 = "1ajlqr3z6zj4fyslqzpwpfkvh8xjx94wsznzij0vx0q7jp43bqig";
};
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "pyflexit" ];
meta = with lib; {
description = "Python library for Flexit A/C units";
homepage = "https://github.com/Sabesto/pyflexit";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}