Files
nixpkgs/pkgs/development/python-modules/gradient/default.nix
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

84 lines
1.7 KiB
Nix

{
lib,
attrs,
boto3,
buildPythonPackage,
click-completion,
click-didyoumean,
click-help-colors,
colorama,
fetchPypi,
gradient-statsd,
gradient-utils,
gql,
halo,
marshmallow,
progressbar2,
pyopenssl,
pyyaml,
requests,
requests-toolbelt,
terminaltables,
websocket-client,
}:
buildPythonPackage rec {
pname = "gradient";
version = "2.99.3";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-Ep3Qh9Q1xWt2JveCf/A/KInQ3cnGE7D1YNdavDS0ZE8=";
};
postPatch = ''
substituteInPlace setup.py \
--replace 'attrs<=' 'attrs>=' \
--replace 'colorama==' 'colorama>=' \
--replace 'gql[requests]==3.0.0a6' 'gql' \
--replace 'PyYAML==5.*' 'PyYAML' \
--replace 'marshmallow<' 'marshmallow>=' \
--replace 'websocket-client==0.57.*' 'websocket-client'
'';
propagatedBuildInputs = [
attrs
boto3
click-completion
click-didyoumean
click-help-colors
colorama
gql
gradient-statsd
gradient-utils
halo
marshmallow
progressbar2
pyopenssl
pyyaml
requests
requests-toolbelt
terminaltables
websocket-client
];
# Tries to use /homeless-shelter to mimic container usage, etc
doCheck = false;
# marshmallow.exceptions.StringNotCollectionError: "only" should be a collection of strings.
# Support for marshmallow > 3
# pythonImportsCheck = [
# "gradient"
# ];
meta = {
description = "Command line interface for Gradient";
mainProgram = "gradient";
homepage = "https://github.com/Paperspace/gradient-cli";
license = lib.licenses.isc;
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ thoughtpolice ];
};
}