Merge pull request #98939 from thall/pybase64

python3Packages.pybase64: Upgrade to python 3
This commit is contained in:
Robert Scott 2020-09-27 17:10:19 +01:00 committed by GitHub
commit 61563633d8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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";