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