mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-08 05:03:40 +00:00
commit
63254436ca
46
pkgs/development/python-modules/apycula/default.nix
Normal file
46
pkgs/development/python-modules/apycula/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user