1{ lib
2, buildPythonPackage
3, fetchPypi
4, six
5, pythonOlder
6}:
7
8buildPythonPackage rec {
9 pname = "serpy";
10 version = "0.3.1";
11 format = "setuptools";
12
13 disabled = pythonOlder "3.7";
14
15 src = fetchPypi {
16 inherit pname version;
17 sha256 = "3772b2a9923fbf674000ff51abebf6ea8f0fca0a2cfcbfa0d63ff118193d1ec5";
18 };
19
20 propagatedBuildInputs = [
21 six
22 ];
23
24 # ImportError: No module named 'tests
25 doCheck = false;
26
27 pythonImportsCheck = [
28 "serpy"
29 ];
30
31 meta = with lib; {
32 description = "Ridiculously fast object serialization";
33 homepage = "https://github.com/clarkduvall/serpy";
34 license = licenses.mit;
35 maintainers = with maintainers; [ ];
36 };
37}