mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 00:08:32 +01:00
pythonPackages.vcrpy: dropped support for Python 2.7
This commit is contained in:
parent
e53717ca11
commit
8b114a0e86
1 changed files with 3 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
|||
{ buildPythonPackage
|
||||
, lib
|
||||
, isPy27
|
||||
, six
|
||||
, fetchPypi
|
||||
, pyyaml
|
||||
|
@ -17,6 +18,8 @@ buildPythonPackage rec {
|
|||
pname = "vcrpy";
|
||||
version = "4.1.1";
|
||||
|
||||
disabled = isPy27;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "57095bf22fc0a2d99ee9674cdafebed0f3ba763018582450706f7d3a74fff599";
|
||||
|
|
Loading…
Reference in a new issue