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

31 lines
695 B
Nix

{
lib,
fetchFromGitHub,
buildPythonPackage,
flake8,
}:
buildPythonPackage rec {
pname = "pure-cdb";
version = "4.0.0";
format = "setuptools";
# Archive on pypi has no tests.
src = fetchFromGitHub {
owner = "bbayles";
repo = "python-pure-cdb";
rev = "refs/tags/v${version}";
hash = "sha256-7zxQO+oTZJhXfM2yijGXchLixiQRuFTOSESVlEc+T0s=";
};
nativeCheckInputs = [ flake8 ];
pythonImportsCheck = [ "cdblib" ];
meta = with lib; {
description = "Python library for working with constant databases";
homepage = "https://python-pure-cdb.readthedocs.io/en/latest";
license = licenses.mit;
maintainers = with maintainers; [ kaction ];
};
}