nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python3Packages.dogpile-cache: disable <python3.6

authored by

Jonathan Ringer and committed by
Frederik Rietdijk
ba537f97 a8b6169a

+2 -1
+2 -1
pkgs/development/python-modules/dogpile.cache/default.nix
··· 1 - { stdenv, buildPythonPackage, fetchPypi 1 + { stdenv, buildPythonPackage, fetchPypi, pythonOlder 2 2 , pytest, pytestcov, mock, Mako, decorator 3 3 }: 4 4 5 5 buildPythonPackage rec { 6 6 pname = "dogpile.cache"; 7 7 version = "1.0.2"; 8 + disabled = pythonOlder "3.6"; 8 9 9 10 src = fetchPypi { 10 11 inherit pname version;