9 buildPythonPackage rec {
10 pname = "single-version";
14 src = fetchFromGitHub {
17 rev = "refs/tags/v${version}";
18 hash = "sha256-dUmJhNCPuq/7WGzFQXLjb8JrQgQn7qyBqzPWaKzD9hc=";
21 nativeBuildInputs = [ poetry-core ];
23 nativeCheckInputs = [ pytestCheckHook ];
25 pythonImportsCheck = [ "single_version" ];
28 description = "Utility to let you have a single source of version in your code base";
29 homepage = "https://github.com/hongquan/single-version";
30 license = licenses.mit;
31 maintainers = with maintainers; [ wolfangaukang ];