summary refs log tree commit diff
path: root/pkgs/development/python-modules/pysyncobj/default.nix
blob: 13936ba090c27591050889b6b9c4cd2c9f4f0652 (plain) (blame)
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
{ lib
, buildPythonPackage
, fetchFromGitHub
}:

buildPythonPackage rec {
  pname = "pysyncobj";
  version = "0.3.10";

  src = fetchFromGitHub {
    owner = "bakwc";
    repo = "PySyncObj";
    rev = version;
    sha256 = "sha256-tcoG0KZewPRYPwDSV7aqrAGw3NF4yj/Ukc+I7HHI9+I=";
  };

  # Tests require network features
  doCheck = false;
  pythonImportsCheck = [ "pysyncobj" ];

  meta = with lib; {
    description = "Python library for replicating your class";
    homepage = "https://github.com/bakwc/PySyncObj";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
  };
}