0d9fc34957
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
42 lines
903 B
Nix
42 lines
903 B
Nix
{ lib
|
|
, aiohttp
|
|
, async-timeout
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mill-local";
|
|
version = "0.3.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Danielhiversen";
|
|
repo = "pyMillLocal";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-kFBzasS7/5AM/ZW5z1ncZ9Xwuy/bh2LTVXPxNTLQnV0=";
|
|
};
|
|
|
|
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";
|
|
changelog = "https://github.com/Danielhiversen/pyMillLocal/releases/tag/${version}";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|