default.nix (727B)
1 { 2 lib, 3 fetchFromGitHub, 4 python3Packages, 5 }: 6 7 python3Packages.buildPythonPackage rec { 8 pname = "pytest-docker-fixtures"; 9 version = "1.3.19"; 10 pyproject = true; 11 12 src = fetchFromGitHub { 13 owner = "guillotinaweb"; 14 repo = "pytest-docker-fixtures"; 15 tag = version; 16 hash = "sha256-9MR2gz69/oGNjuZNGTSe58j8ykOl6AWWII+XzLkri60="; 17 }; 18 19 build-system = with python3Packages; [ setuptools ]; 20 21 dependencies = with python3Packages; [ 22 docker 23 pytest 24 requests 25 ]; 26 27 doCheck = false; 28 29 meta = { 30 description = "Pytest docker fixtures"; 31 homepage = "https://github.com/guillotinaweb/pytest-docker-fixtures"; 32 license = lib.licenses.bsd3; 33 maintainers = [ lib.maintainers.sikmir ]; 34 }; 35 }