mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
33 lines
774 B
Nix
33 lines
774 B
Nix
{ lib, buildPythonPackage, fetchFromGitHub
|
|
, setuptools-scm, pytest, cmake
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pytest-datadir";
|
|
version = "1.3.1";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gabrielcnr";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "0kwgp6sqnqnmww5r0dkmyfpi0lmw0iwxz3fnwn2fs8w6bvixzznf";
|
|
};
|
|
|
|
nativeBuildInputs = [ setuptools-scm ];
|
|
|
|
preBuild = ''
|
|
export SETUPTOOLS_SCM_PRETEND_VERSION="${version}"
|
|
'';
|
|
|
|
checkInputs = [ pytest ];
|
|
checkPhase = "pytest";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/gabrielcnr/pytest-datadir";
|
|
description = "pytest plugin for manipulating test data directories and files";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ kira-bruneau ];
|
|
};
|
|
}
|