mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 19:03:28 +00:00
pythonPackages.bcrypt: disable python2
This commit is contained in:
parent
c379aa9f8e
commit
87371b8f63
@ -1,4 +1,4 @@
|
||||
{ stdenv, buildPythonPackage, isPyPy, fetchPypi
|
||||
{ stdenv, buildPythonPackage, isPyPy, fetchPypi, pythonOlder
|
||||
, cffi, pycparser, mock, pytest, py, six }:
|
||||
|
||||
with stdenv.lib;
|
||||
@ -6,6 +6,7 @@ with stdenv.lib;
|
||||
buildPythonPackage rec {
|
||||
version = "3.2.0";
|
||||
pname = "bcrypt";
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
|
Loading…
Reference in New Issue
Block a user