mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Merge pull request #98939 from thall/pybase64
python3Packages.pybase64: Upgrade to python 3
This commit is contained in:
commit
61563633d8
1 changed files with 3 additions and 1 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue