mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-20 03:43:45 +00:00
python311Packages.starline: modernize expression
This commit is contained in:
parent
e02aed04ef
commit
4bdb4b8049
@ -2,7 +2,8 @@
|
||||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
, fetchPypi
|
||||
, aiohttp
|
||||
, fetchpatch
|
||||
, setuptools
|
||||
, requests
|
||||
}:
|
||||
|
||||
@ -12,13 +13,26 @@ buildPythonPackage rec {
|
||||
|
||||
disabled = pythonOlder "3.5";
|
||||
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1753f5fcd2a6976aed775afb03f8392159f040c673917cc0c634510d95c13cb9";
|
||||
hash = "sha256-F1P1/NKml2rtd1r7A/g5IVnwQMZzkXzAxjRRDZXBPLk=";
|
||||
};
|
||||
|
||||
patches = [
|
||||
# https://github.com/Anonym-tsk/starline/pull/5
|
||||
(fetchpatch {
|
||||
url = "https://github.com/Anonym-tsk/starline/commit/4e6cdf8e05c5fb8509ee384e77b39a2495587160.patch";
|
||||
hash = "sha256-y9b6ePH3IEgmt3ALHQGwH102rlm4KfmH4oIoIC93cWU=";
|
||||
})
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
aiohttp
|
||||
requests
|
||||
];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user