pythonPackages.forbiddenfruit: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov
2018-10-16 16:06:47 -04:00
committed by Frederik Rietdijk
parent 991adf820b
commit 84fc0eae5e
2 changed files with 22 additions and 15 deletions

View File

@@ -0,0 +1,21 @@
{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
version = "0.1.0";
pname = "forbiddenfruit";
src = fetchPypi {
inherit pname version;
sha256 = "0xra2kw6m8ag29ifwmhi5zqksh4cr0yy1waqd488rm59kcr3zl79";
};
meta = with stdenv.lib; {
description = "Patch python built-in objects";
homepage = https://pypi.python.org/pypi/forbiddenfruit;
license = licenses.mit;
};
}