File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
pkgs/development/python-modules/testcontainers Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 1414 wrapt ,
1515} :
1616
17- buildPythonPackage rec {
17+ buildPythonPackage ( finalAttrs : {
1818 pname = "testcontainers" ;
19- version = "4.13.3 " ;
19+ version = "4.14.0 " ;
2020 pyproject = true ;
2121
2222 src = fetchFromGitHub {
2323 owner = "testcontainers" ;
2424 repo = "testcontainers-python" ;
25- tag = "testcontainers-v${ version } " ;
26- hash = "sha256-/lIjrJO+Mw0gv0Ym98A4TrISvmKkCKLFeoJu6t9q9kE =" ;
25+ tag = "testcontainers-v${ finalAttrs . version } " ;
26+ hash = "sha256-Zquh1tY9Z2BU6BPsEGR4eBjcHVB4KsxOQ81Tk6YTyTQ =" ;
2727 } ;
2828
2929 postPatch = ''
30- echo "${ version } " > VERSION
30+ echo "${ finalAttrs . version } " > VERSION
3131 '' ;
3232
3333 build-system = [ poetry-core ] ;
@@ -51,8 +51,8 @@ buildPythonPackage rec {
5151 meta = {
5252 description = "Allows using docker containers for functional and integration testing" ;
5353 homepage = "https://github.com/testcontainers/testcontainers-python" ;
54- changelog = "https://github.com/testcontainers/testcontainers-python/releases/tag/testcontainers-v ${ version } " ;
54+ changelog = "https://github.com/testcontainers/testcontainers-python/releases/tag/${ finalAttrs . src . tag } " ;
5555 license = lib . licenses . asl20 ;
5656 maintainers = with lib . maintainers ; [ onny ] ;
5757 } ;
58- }
58+ } )
You can’t perform that action at this time.
0 commit comments