python.pkgs.pylast: no longer supports python2

This commit is contained in:
Robert Schütz 2019-03-19 22:49:53 +01:00
parent 11f0d36737
commit a376d3ee09

View file

@ -1,9 +1,11 @@
{ stdenv, buildPythonPackage, fetchPypi, certifi, six }:
{ stdenv, buildPythonPackage, fetchPypi, isPy3k, certifi, six }:
buildPythonPackage rec {
pname = "pylast";
version = "3.0.0";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "24051c52011ff18bdeaee9df084ecc90da6c627da86f3cdcfec4af2928e9bc56";