depot/third_party/nixpkgs/pkgs/development/python-modules/dvc-studio-client/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

48 lines
1,021 B
Nix

{
lib,
buildPythonPackage,
dulwich,
fetchFromGitHub,
gitpython,
pythonOlder,
requests,
setuptools-scm,
voluptuous,
}:
buildPythonPackage rec {
pname = "dvc-studio-client";
version = "0.20.0";
format = "pyproject";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "iterative";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-JLrsbgifoUnN1Mwml9tO3/SkA6miE14AGjxrFwEcRks=";
};
nativeBuildInputs = [ setuptools-scm ];
propagatedBuildInputs = [
dulwich
gitpython
requests
voluptuous
];
pythonImportsCheck = [ "dvc_studio_client" ];
# Tests try to access network
doCheck = false;
meta = with lib; {
description = "Library to post data from DVC/DVCLive to Iterative Studio";
homepage = "https://github.com/iterative/dvc-studio-client";
changelog = "https://github.com/iterative/dvc-studio-client/releases/tag/${version}";
license = licenses.asl20;
maintainers = with maintainers; [ melling ];
};
}