mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
49 lines
1 KiB
Nix
49 lines
1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
, fetchPypi
|
|
, braceexpand
|
|
, click
|
|
, pyyaml
|
|
, lxml
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "svdtools";
|
|
version = "0.1.21";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchPypi {
|
|
inherit version pname;
|
|
sha256 = "0qc94haqkj4dbhify1l3x0ji1dx34m79nfnsk1c7l1kl2zjvz6bz";
|
|
};
|
|
|
|
# remove upon next release
|
|
# see: https://github.com/stm32-rs/svdtools/pull/96
|
|
prePatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace 'PyYAML ~= 5.3' 'PyYAML >= 5.3'
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
braceexpand
|
|
click
|
|
pyyaml
|
|
lxml
|
|
];
|
|
|
|
checkInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "svdtools" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python package to handle vendor-supplied, often buggy SVD files";
|
|
homepage = "https://github.com/stm32-rs/svdtools";
|
|
changelog = "https://github.com/stm32-rs/svdtools/blob/v${version}/CHANGELOG-python.md";
|
|
license = with licenses; [ asl20 /* or */ mit ];
|
|
maintainers = with maintainers; [ newam ];
|
|
};
|
|
}
|