Files
nixpkgs/pkgs/development/python-modules/pystardict/default.nix
T
Martin Weinelt 8056f9250c treewide: remove redundant SETUPTOOLS_SCM_PRETEND_VERSION usage
The setuptools-scm packages gained a setup hook, that sets it to the
derivation version automatically, so setting it to that manually has
become redundant.

This also affects downstream consumers of setuptools-scm, like hatch-vcs
or flit-scm.
2023-12-20 20:16:39 +01:00

38 lines
796 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, setuptools-scm
, six
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pystardict";
version = "0.8";
format = "setuptools";
src = fetchFromGitHub {
owner = "lig";
repo = "pystardict";
rev = version;
hash = "sha256-YrZpIhyxfA3G7rP0SJ+EvzGwAXlne80AYilkj6cIDnA=";
};
propagatedBuildInputs = [ six ];
nativeBuildInputs = [ setuptools setuptools-scm ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "pystardict" ];
meta = with lib; {
description =
"Library for manipulating StarDict dictionaries from within Python";
homepage = "https://github.com/lig/pystardict";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ thornycrackers ];
};
}