Merge pull request #138450 from newAM/apycula

apycula: init at 0.0.1a9
This commit is contained in:
figsoda 2021-09-23 16:40:15 -04:00 committed by GitHub
commit 63254436ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 48 additions and 0 deletions

View File

@ -0,0 +1,46 @@
{ lib
, buildPythonPackage
, pythonOlder
, fetchPypi
, setuptools-scm
, numpy
, pandas
, pillow
, crcmod
, openpyxl
}:
buildPythonPackage rec {
pname = "apycula";
version = "0.0.1a9";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit version;
pname = "Apycula";
sha256 = "01shkaxakisgg253jdwjkd81vnjgfws3gi2wyrdxmkcg95wphk5y";
};
nativeBuildInputs = [ setuptools-scm ];
propagatedBuildInputs = [
numpy
pandas
pillow
crcmod
openpyxl
];
# tests require a physical FPGA
doCheck = false;
pythonImportsCheck = [ "apycula" ];
meta = with lib; {
description = "Open Source tools for Gowin FPGAs";
homepage = "https://github.com/YosysHQ/apicula";
license = licenses.mit;
maintainers = with maintainers; [ newam ];
};
}

View File

@ -517,6 +517,8 @@ in {
apsw = callPackage ../development/python-modules/apsw { };
apycula = callPackage ../development/python-modules/apycula { };
aqualogic = callPackage ../development/python-modules/aqualogic { };
arabic-reshaper = callPackage ../development/python-modules/arabic-reshaper { };