python3Packages.somajo: use pyproject

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
Sefa Eyeoglu 2023-11-16 23:47:59 +01:00
parent 731d094bf3
commit e29d18f471
No known key found for this signature in database
GPG Key ID: E13DFD4B47127951

View File

@ -3,13 +3,14 @@
, fetchFromGitHub
, buildPythonPackage
, pythonOlder
, setuptools
, regex
}:
buildPythonPackage rec {
pname = "somajo";
version = "2.3.0";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.7";
@ -20,6 +21,10 @@ buildPythonPackage rec {
hash = "sha256-CNGSol77Q3uAZPLeV43NhIffO31tnZoMYOsevkZh3pc=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
regex
];