13 buildPythonPackage rec {
16 format = "setuptools";
18 disabled = pythonOlder "3.7";
20 src = fetchFromGitHub {
24 hash = "sha256-nlKEWdqttFnjBnXutlxTy9oILqFzKHKKPJpTtCUbJ5k=";
27 propagatedBuildInputs = [
36 substituteInPlace setup.py \
37 --replace "typesystem==0.3.1" "typesystem"
40 # Tests require databases
43 pythonImportsCheck = [ "orm" ];
46 description = "Async ORM";
47 homepage = "https://github.com/encode/orm";
48 license = licenses.bsd3;