python310Packages.flammkuchen: 1.0.2 -> 1.0.3

This commit is contained in:
Theodore Ni 2023-07-10 18:38:58 -07:00
parent 42da23028c
commit 2f2ec1bca9
No known key found for this signature in database
GPG Key ID: 48B67583BDDD4474

View File

@ -1,31 +1,38 @@
{ lib, buildPythonPackage, fetchPypi, isPy27
{ lib
, buildPythonPackage
, fetchPypi
, numpy
, scipy
, tables
, pandas
, nose
, configparser
, pytestCheckHook
, scipy
, setuptools
, tables
}:
buildPythonPackage rec {
pname = "flammkuchen";
version = "1.0.2";
version = "1.0.3";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-KtMGQftoYVNNMtfYeYiaQyMLAySpf9YXLMxj+e/CV5I=";
hash = "sha256-z68HBsU9J6oe8+YL4OOQiMYQRs3TZUDM+e2ssqo6BFI=";
};
nativeCheckInputs = [
nose
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
numpy
scipy
tables
];
nativeCheckInputs = [
pandas
] ++ lib.optionals isPy27 [ configparser ];
pytestCheckHook
];
meta = {
homepage = "https://github.com/portugueslab/flammkuchen";