43 lines
863 B
Nix
43 lines
863 B
Nix
|
{ lib
|
||
|
, buildPythonPackage
|
||
|
, fetchFromGitHub
|
||
|
, pytestCheckHook
|
||
|
, pythonOlder
|
||
|
, setuptools
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "stupidartnet";
|
||
|
version = "1.4.0";
|
||
|
pyproject = true;
|
||
|
|
||
|
disabled = pythonOlder "3.8";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "cpvalente";
|
||
|
repo = "stupidArtnet";
|
||
|
rev = "refs/tags/${version}";
|
||
|
hash = "sha256-2LfK63FJcdnXfDLuUzYNlspj1jmtw00S6el49cH+RRM=";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
setuptools
|
||
|
];
|
||
|
|
||
|
nativeCheckInputs = [
|
||
|
pytestCheckHook
|
||
|
];
|
||
|
|
||
|
pythonImportsCheck = [
|
||
|
"stupidArtnet"
|
||
|
];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Library implementation of the Art-Net protocol";
|
||
|
homepage = "https://github.com/cpvalente/stupidArtnet";
|
||
|
changelog = "https://github.com/cpvalente/stupidArtnet/releases/tag/${version}";
|
||
|
license = licenses.mit;
|
||
|
maintainers = with maintainers; [ fab ];
|
||
|
};
|
||
|
}
|