python3Packages.cmsis-svd: init at 0.4
This commit is contained in:
parent
4ceb20b49b
commit
ab2f1e78cd
28
pkgs/development/python-modules/cmsis-svd/default.nix
Normal file
28
pkgs/development/python-modules/cmsis-svd/default.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{ 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;
|
||||||
|
};
|
||||||
|
}
|
@ -1349,6 +1349,8 @@ in {
|
|||||||
|
|
||||||
cmdtest = callPackage ../development/python-modules/cmdtest { };
|
cmdtest = callPackage ../development/python-modules/cmdtest { };
|
||||||
|
|
||||||
|
cmsis-svd = callPackage ../development/python-modules/cmsis-svd { };
|
||||||
|
|
||||||
cntk = callPackage ../development/python-modules/cntk { };
|
cntk = callPackage ../development/python-modules/cntk { };
|
||||||
|
|
||||||
cnvkit = callPackage ../development/python-modules/cnvkit { };
|
cnvkit = callPackage ../development/python-modules/cnvkit { };
|
||||||
|
Loading…
Reference in New Issue
Block a user