mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
python3Packages.cmigemo: migrate to pyproject (#529735)
This commit is contained in:
commit
ecef18acd0
1 changed files with 8 additions and 3 deletions
|
|
@ -3,6 +3,7 @@
|
|||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
setuptools,
|
||||
six,
|
||||
cmigemo,
|
||||
pytestCheckHook,
|
||||
|
|
@ -11,14 +12,18 @@
|
|||
buildPythonPackage (finalAttrs: {
|
||||
pname = "cmigemo";
|
||||
version = "0.1.6";
|
||||
format = "setuptools";
|
||||
pyproject = true;
|
||||
|
||||
__structuredAttrs = true;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit (finalAttrs) pname version;
|
||||
sha256 = "09j68kvcskav2cqb7pj12caksmj4wh2lhjp0csq00xpn0wqal4vk";
|
||||
hash = "sha256-cxOqMAf2dgCwZuBKSAXkRFY9FRNB3rMwE1tNzfZERiY=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ six ];
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [ six ];
|
||||
|
||||
preConfigure = ''
|
||||
export LDFLAGS="-L${cmigemo}/lib"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue