1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

mkdocs: default to Python 3

This commit is contained in:
Jethro Kuan 2020-02-12 18:21:40 +08:00 committed by Frederik Rietdijk
parent 7218f3a791
commit ee17a6a837

View file

@ -1,6 +1,6 @@
{ stdenv, lib, python, fetchFromGitHub }:
{ stdenv, lib, python3, fetchFromGitHub }:
with python.pkgs;
with python3.pkgs;
buildPythonApplication rec {
pname = "mkdocs";