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
57 lines
1001 B
Nix
57 lines
1001 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
colcon,
|
|
cargo,
|
|
fetchFromGitHub,
|
|
scspell,
|
|
setuptools,
|
|
pytestCheckHook,
|
|
rustfmt,
|
|
toml,
|
|
writableTmpDirAsHomeHook,
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "colcon-cargo";
|
|
version = "0.1.3";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "colcon";
|
|
repo = "colcon-cargo";
|
|
tag = version;
|
|
hash = "sha256-Do8i/Z1nn8wsj0xzCQdSaaXoDf9N34SiMb/GIe4YOs4=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
colcon
|
|
toml
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
cargo
|
|
pytestCheckHook
|
|
scspell
|
|
rustfmt
|
|
writableTmpDirAsHomeHook
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# Skip the linter tests
|
|
"test/test_flake8.py"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"colcon_cargo"
|
|
];
|
|
|
|
meta = {
|
|
description = "Extension for colcon-core to support Rust packages built with Cargo";
|
|
homepage = "https://github.com/colcon/colcon-cargo";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ guelakais ];
|
|
};
|
|
}
|