summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/enochecker-core/default.nix
blob: 4eb42267036f2d09df88fa3be409b309fe577cf6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
  lib,
  buildPythonPackage,
  fetchPypi,
}:

buildPythonPackage rec {
  pname = "enochecker-core";
  version = "0.10.0";
  format = "setuptools";

  src = fetchPypi {
    inherit version;
    pname = "enochecker_core";
    hash = "sha256-N41p2XRCp55rcPXLpA4rPIARsva/dQzK8qafjzXtavI=";
  };

  pythonImportsCheck = [ "enochecker_core" ];

  # no tests upstream
  doCheck = false;

  meta = {
    description = "Base library for enochecker libs";
    homepage = "https://github.com/enowars/enochecker_core";
    changelog = "https://github.com/enowars/enochecker_core/releases/tag/v${version}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fwc ];
  };
}