summary refs log tree commit diff
path: root/pkgs/development/python-modules/characteristic/default.nix
blob: c44989ab5b7e62bd81424f0c92d2ee8045933523 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib
, buildPythonPackage
, fetchPypi
, pytest
}:

buildPythonPackage rec {
  pname = "characteristic";
  version = "14.3.0";
  name = "${pname}-${version}";
  src = fetchPypi {
    inherit pname version;
    sha256 = "ded68d4e424115ed44e5c83c2a901a0b6157a959079d7591d92106ffd3ada380";
  };

  checkInputs = [ pytest ];

  meta = {
    description = "Python attributes without boilerplate";
    homepage = https://characteristic.readthedocs.org;
  };
}