python3Packages.millheater: init at 0.4.1
This commit is contained in:
parent
9770439689
commit
fa54e310aa
37
pkgs/development/python-modules/millheater/default.nix
Normal file
37
pkgs/development/python-modules/millheater/default.nix
Normal file
@ -0,0 +1,37 @@
|
||||
{ lib
|
||||
, aiohttp
|
||||
, async-timeout
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "millheater";
|
||||
version = "0.4.1";
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Danielhiversen";
|
||||
repo = "pymill";
|
||||
rev = version;
|
||||
sha256 = "0dypv4xwdqcv45aibfkik2slm9r8y7pd2gwqa49kn96f40kdfwb0";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
aiohttp
|
||||
async-timeout
|
||||
];
|
||||
|
||||
# Project has no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "mill" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python library for Mill heater devices";
|
||||
homepage = "https://github.com/Danielhiversen/pymill";
|
||||
license = with licenses; [ mit ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -4385,6 +4385,8 @@ in {
|
||||
|
||||
milksnake = callPackage ../development/python-modules/milksnake { };
|
||||
|
||||
millheater = callPackage ../development/python-modules/millheater { };
|
||||
|
||||
minidb = callPackage ../development/python-modules/minidb { };
|
||||
|
||||
minidump = callPackage ../development/python-modules/minidump { };
|
||||
|
Loading…
Reference in New Issue
Block a user