mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-14 16:36:38 +01:00
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:
pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
for f in $(find -name '*.nix'); do
grep -q "$pattern" "$f" || continue
sed -i "/$pattern/d" "$f"
if [ $(grep -c pythonOlder "$f") == 1 ]; then
sed -i '/^\s*pythonOlder,\s*$/d' "$f"
fi
nixfmt "$f"
done
42 lines
894 B
Nix
42 lines
894 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "maxcube-api";
|
|
version = "0.4.3";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hackercowboy";
|
|
repo = "python-${pname}";
|
|
rev = "V${version}";
|
|
sha256 = "10k61gfpnqljf3p3qxr97xq7j67a9cr4ivd9v72hdni0znrbx6ym";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py --replace "license=license" "license='MIT'"
|
|
'';
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
disabledTests = [
|
|
"testSendRadioMsgClosesConnectionOnErrorAndRetriesIfReusingConnection"
|
|
"testSendRadioMsgReusesConnection"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"maxcube"
|
|
"maxcube.cube"
|
|
];
|
|
|
|
meta = {
|
|
description = "eQ-3/ELV MAX! Cube Python API";
|
|
homepage = "https://github.com/hackercowboy/python-maxcube-api";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|