hy: 0.15 -> 0.16 (#57882)

* hy: 0.15 -> 0.16

* hy: fetch patch directly from upstream repo

* hy: remove in-tree patch
This commit is contained in:
Andrew Miller
2019-05-01 13:18:50 -04:00
committed by Renaud
parent 33924117c6
commit f5be1fc849
3 changed files with 33 additions and 3 deletions

View File

@@ -0,0 +1,18 @@
{ stdenv, buildPythonPackage, fetchPypi, pytest }:
buildPythonPackage rec {
pname = "fastentrypoints";
version = "0.12";
src = fetchPypi {
inherit pname version;
sha256 = "02s1j8i2dzbpbwgq2a3fiqwm3cnmhii2qzc0k42l0rdxd4a4ya7z";
};
meta = with stdenv.lib; {
description = "Makes entry_points specified in setup.py load more quickly";
homepage = https://github.com/ninjaaron/fast-entry_points;
license = licenses.bsd2;
maintainers = with maintainers; [ nixy ];
};
}