1a04744f74
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
36 lines
704 B
Nix
36 lines
704 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools,
|
|
pyserial,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "modbus-tk";
|
|
version = "1.1.5";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "modbus_tk";
|
|
inherit version;
|
|
hash = "sha256-d6cqOtnV0yodIRC8BCFmgMpX11IpEuDycem/XxtwGzY=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [ pyserial ];
|
|
|
|
# Source no tagged anymore and PyPI doesn't ship tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "modbus_tk" ];
|
|
|
|
meta = {
|
|
description = "Module for simple Modbus interactions";
|
|
homepage = "https://github.com/ljean/modbus-tk";
|
|
license = lib.licenses.lgpl21Plus;
|
|
maintainers = with lib.maintainers; [ fab ];
|
|
};
|
|
}
|