resholve: move python2-modules from oil to their folder

This commit is contained in:
Aliaksandr
2026-05-31 15:15:51 +03:00
parent 574bf7de39
commit 34bc09dca9
10 changed files with 231 additions and 225 deletions
@@ -0,0 +1,24 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
}:
buildPythonPackage {
pname = "sedparse";
version = "0.1.2";
format = "setuptools";
src = fetchFromGitHub {
owner = "aureliojargas";
repo = "sedparse";
rev = "0.1.2";
hash = "sha256-Q17A/oJ3GZbdSK55hPaMdw85g43WhTW9tuAuJtDfHHU=";
};
meta = {
description = "Python port of GNU sed's parser";
homepage = "https://github.com/aureliojargas/sedparse";
license = lib.licenses.gpl3Plus;
};
}