evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / editables / default.nix
blob32030cff7d4677c436ace310bd6b055530988c04
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   flit-core,
6   pytestCheckHook,
7 }:
9 buildPythonPackage rec {
10   pname = "editables";
11   version = "0.5";
12   pyproject = true;
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-MJYn2bXErcDmaNjG+nusG6fIxdQVwtJ/YPCB+OgNHeI=";
17   };
19   build-system = [ flit-core ];
21   nativeCheckInputs = [ pytestCheckHook ];
23   # Tests not included in archive.
24   doCheck = false;
26   pythonImportsCheck = [ "editables" ];
28   meta = {
29     description = "Editable installations";
30     homepage = "https://github.com/pfmoore/editables";
31     changelog = "https://github.com/pfmoore/editables/blob/${version}/CHANGELOG.md";
32     license = lib.licenses.mit;
33     maintainers = with lib.maintainers; [ getchoo ];
34   };