3
0
Fork 0
forked from mirrors/nixpkgs

python3Packages.mill-local: init at 0.1.0

This commit is contained in:
Fabian Affolter 2021-11-12 22:03:42 +01:00
parent a97f20e5d8
commit 3f7abba2fa
2 changed files with 43 additions and 0 deletions

View file

@ -0,0 +1,41 @@
{ lib
, aiohttp
, async-timeout
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
}:
buildPythonPackage rec {
pname = "mill-local";
version = "0.1.0";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "Danielhiversen";
repo = "pyMillLocal";
rev = version;
sha256 = "0q0frwj9yxdmqi5axl7gxirfflgn8xh1932c6lhp9my2v1d0gdrk";
};
propagatedBuildInputs = [
aiohttp
async-timeout
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [
"mill_local"
];
meta = with lib; {
description = "Python module to communicate locally with Mill heaters";
homepage = "https://github.com/Danielhiversen/pyMillLocal";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -4748,6 +4748,8 @@ in {
milksnake = callPackage ../development/python-modules/milksnake { };
mill-local = callPackage ../development/python-modules/mill-local { };
millheater = callPackage ../development/python-modules/millheater { };
miniaudio = callPackage ../development/python-modules/miniaudio { };