File tree Expand file tree Collapse file tree 1 file changed +9
-7
lines changed
pkgs/development/python-modules/pandera Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change 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 ,
3938
4039buildPythonPackage 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 =
You can’t perform that action at this time.
0 commit comments