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

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

  checkInputs = [ pytest ];

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