0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

python2.pkgs: move expressions into python2-modules/ folder

Another step in further separating python2 from python3.
This commit is contained in:
Frederik Rietdijk 2022-01-16 07:34:26 +01:00 committed by Frederik Rietdijk
parent 2027fb600d
commit ae18d68b6b
82 changed files with 251 additions and 96 deletions

View file

@ -1,21 +0,0 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "decorator";
version = "4.4.2";
src = fetchPypi {
inherit pname version;
sha256 = "1rxzhk5zwiggk45hl53zydvy70lk654kg0nc1p54090p402jz9p3";
};
meta = with lib; {
homepage = "https://pypi.python.org/pypi/decorator";
description = "Better living through Python with decorators";
license = lib.licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}