default.nix (870B)
1 { 2 lib, 3 fetchFromGitHub, 4 python3Packages, 5 }: 6 7 python3Packages.buildPythonPackage (finalAttrs: { 8 pname = "pytest-skip-markers"; 9 version = "1.5.1"; 10 pyproject = true; 11 12 src = fetchFromGitHub { 13 owner = "saltstack"; 14 repo = "pytest-skip-markers"; 15 tag = finalAttrs.version; 16 hash = "sha256-jrNPF68sKpEmwU12ZbKK/24DqA1RrjIXYPyoKE/3FLM="; 17 }; 18 19 SETUPTOOLS_SCM_PRETEND_VERSION = finalAttrs.version; 20 21 build-system = with python3Packages; [ 22 setuptools-scm 23 setuptools-declarative-requirements 24 ]; 25 26 dependencies = with python3Packages; [ 27 attrs 28 distro 29 pytest 30 ]; 31 32 doCheck = false; 33 34 meta = { 35 description = "A Pytest plugin which implements a few useful skip markers"; 36 homepage = "https://github.com/saltstack/pytest-skip-markers"; 37 license = lib.licenses.asl20; 38 maintainers = [ lib.maintainers.sikmir ]; 39 }; 40 })
