python3Packages.pybase64: Upgrade to python 3

Python 2 ist supported.

ZHF: #97479
https://hydra.nixos.org/build/127647482
This commit is contained in:
Niclas Thall 2020-09-27 13:50:39 +02:00
parent 74f3e9cce1
commit 486174da11

View File

@ -1,9 +1,11 @@
{ buildPythonPackage, stdenv, fetchPypi, six, pytest }:
{ buildPythonPackage, isPy3k, stdenv, fetchPypi, six, pytest }:
buildPythonPackage rec {
pname = "pybase64";
version = "1.0.1";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "6ced40531bffc81bafc790d5c0d2f752e281b3b00fd6ff4e79385c625e5dbab1";