mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
hy: use python2, build fails with 3
This commit is contained in:
parent
8e3c19b2ab
commit
7e7cec1562
1 changed files with 4 additions and 4 deletions
|
@ -1,15 +1,15 @@
|
|||
{ stdenv, fetchurl, pythonPackages }:
|
||||
{ stdenv, fetchurl, python2Packages }:
|
||||
|
||||
pythonPackages.buildPythonApplication rec {
|
||||
python2Packages.buildPythonApplication rec {
|
||||
pname = "hy";
|
||||
version = "0.17.0";
|
||||
|
||||
src = pythonPackages.fetchPypi {
|
||||
src = python2Packages.fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1gdbqsirsdxj320wnp7my5awzs1kfs6m4fqmkzbd1zd47qzj0zfi";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with pythonPackages; [
|
||||
propagatedBuildInputs = with python2Packages; [
|
||||
appdirs
|
||||
astor
|
||||
clint
|
||||
|
|
Loading…
Reference in a new issue