We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ddd5e4 commit 62501a2Copy full SHA for 62501a2
1 file changed
pkgs/development/python-modules/testcontainers/default.nix
@@ -9,13 +9,19 @@ buildPythonPackage rec {
9
pname = "testcontainers";
10
version = "3.7.1";
11
12
+ format = "setuptools";
13
+
14
src = fetchFromGitHub {
15
owner = "testcontainers";
16
repo = "testcontainers-python";
17
rev = "v${version}";
18
hash = "sha256-OHuvUi5oa0fVcfo0FW9XwaUp52MEH4NTM6GqK4ic0oM=";
19
};
20
21
+ postPatch = ''
22
+ echo "${version}" > VERSION
23
+ '';
24
25
buildInputs = [
26
deprecation
27
docker
0 commit comments