python-prjxray: init at 0.1-2676-gac8d30e3
This commit is contained in:
parent
a7d6c39c3c
commit
f738b9284c
|
@ -0,0 +1,44 @@
|
||||||
|
{ stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pkgs
|
||||||
|
, buildPythonPackage
|
||||||
|
, intervaltree
|
||||||
|
, numpy
|
||||||
|
, openpyxl
|
||||||
|
, parse
|
||||||
|
, progressbar
|
||||||
|
, pyjson5
|
||||||
|
, pyyaml
|
||||||
|
, simplejson
|
||||||
|
, symbiflow-fasm
|
||||||
|
, textx
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "python-prjxray";
|
||||||
|
version = pkgs.prjxray-tools.version;
|
||||||
|
|
||||||
|
src = pkgs.prjxray-tools.src;
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
intervaltree
|
||||||
|
numpy
|
||||||
|
openpyxl
|
||||||
|
parse
|
||||||
|
progressbar
|
||||||
|
pyjson5
|
||||||
|
pyyaml
|
||||||
|
simplejson
|
||||||
|
symbiflow-fasm
|
||||||
|
textx
|
||||||
|
];
|
||||||
|
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Documenting the Xilinx 7-series bit-stream format";
|
||||||
|
homepage = "https://github.com/SymbiFlow/prjxray";
|
||||||
|
license = licenses.isc;
|
||||||
|
maintainers = with maintainers; [ mcaju ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -4753,6 +4753,8 @@ in {
|
||||||
|
|
||||||
python-openems = callPackage ../development/python-modules/python-openems { };
|
python-openems = callPackage ../development/python-modules/python-openems { };
|
||||||
|
|
||||||
|
python-prjxray = callPackage ../development/python-modules/python-prjxray { };
|
||||||
|
|
||||||
python-tado = callPackage ../development/python-modules/python-tado { };
|
python-tado = callPackage ../development/python-modules/python-tado { };
|
||||||
|
|
||||||
pkutils = callPackage ../development/python-modules/pkutils { };
|
pkutils = callPackage ../development/python-modules/pkutils { };
|
||||||
|
|
Loading…
Reference in New Issue