Skip to content

Commit 644621c

Browse files
authored
python312Packages.pandera: 0.22.1 -> 0.23.1 (#406581)
2 parents 7a0cfca + 3a80e0d commit 644621c

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

pkgs/development/python-modules/pandera/default.nix

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,15 @@
66

77
# build-system
88
setuptools,
9+
setuptools-scm,
910

1011
# dependencies
11-
multimethod,
1212
numpy,
1313
packaging,
1414
pandas,
1515
pydantic,
1616
typeguard,
1717
typing-inspect,
18-
wrapt,
1918

2019
# optional-dependencies
2120
black,
@@ -39,27 +38,30 @@
3938

4039
buildPythonPackage rec {
4140
pname = "pandera";
42-
version = "0.22.1";
41+
version = "0.23.1";
4342
pyproject = true;
4443

4544
src = fetchFromGitHub {
4645
owner = "unionai-oss";
4746
repo = "pandera";
4847
tag = "v${version}";
49-
hash = "sha256-QOks3L/ZebkoWXWbHMn/tV9SmYSbR+gZ8wpqWoydkPM=";
48+
hash = "sha256-aKyuOA/N5QPv6NoN6OFNSFMuN4+8XMpglVtoDFDJZBs=";
5049
};
5150

52-
build-system = [ setuptools ];
51+
build-system = [
52+
setuptools
53+
setuptools-scm
54+
];
55+
56+
env.SETUPTOOLS_SCM_PRETEND_VERSION = version;
5357

5458
dependencies = [
55-
multimethod
5659
numpy
5760
packaging
5861
pandas
5962
pydantic
6063
typeguard
6164
typing-inspect
62-
wrapt
6365
];
6466

6567
optional-dependencies =

0 commit comments

Comments
 (0)