mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 16:45:49 +01:00
python3Packages.pytest-snapshot: disable on older Python releases
This commit is contained in:
parent
b2e2247f8b
commit
582a2d7683
1 changed files with 3 additions and 0 deletions
|
@ -5,6 +5,7 @@
|
|||
, pytest
|
||||
, setuptools-scm
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
|
@ -12,6 +13,8 @@ buildPythonPackage rec {
|
|||
version = "0.9.0";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "joseph-roitman";
|
||||
repo = pname;
|
||||
|
|
Loading…
Reference in a new issue