evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / namex / default.nix
blob4e7fadf847962d120f26155d91d3880291ef8812
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   setuptools,
6   wheel,
7 }:
9 buildPythonPackage rec {
10   pname = "namex";
11   version = "0.0.8";
12   pyproject = true;
14   # Not using fetchFromGitHub because the repo does not have any tag/release.
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-MqUPbFZcC7EKp2KYyVlQer3A6FDv4IXcOPNED8s6qQs=";
18   };
20   build-system = [
21     setuptools
22     wheel
23   ];
25   pythonImportsCheck = [ "namex" ];
27   # This packages has no tests.
28   doCheck = false;
30   meta = {
31     description = "Simple utility to separate the implementation of your Python package and its public API surface";
32     homepage = "https://github.com/fchollet/namex";
33     license = lib.licenses.asl20;
34     maintainers = with lib.maintainers; [ GaetanLepage ];
35   };