My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/cmsis-svd/default.nix

28 lines
616 B

{ lib, buildPythonPackage, fetchFromGitHub, six }:
buildPythonPackage rec {
pname = "cmsis-svd";
version = "0.4";
src = fetchFromGitHub {
owner = "posborne";
repo = pname;
rev = "python-${version}";
sha256 = "01f2z01gqgx0risqnbrlaqj49fmly30zbwsf7rr465ggnl2c04r0";
};
preConfigure = ''
cd python
'';
propagatedBuildInputs = [ six ];
pythonImportsCheck = [ "cmsis_svd" ];
meta = with lib; {
description = "CMSIS SVD parser";
homepage = "https://github.com/posborne/cmsis-svd";
maintainers = with maintainers; [ dump_stack ];
license = licenses.asl20;
};
}