Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 28 lines 573 B view raw
1{ buildPythonPackage 2, lib 3, fetchPypi 4, six 5, requests 6}: 7 8buildPythonPackage rec { 9 version = "2.3.3"; 10 pname = "pydocumentdb"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "1fcp3g62pc9hpa0r6vdjhaln4h0azywjqfzi8bd4414ja0mxmj3p"; 15 }; 16 17 propagatedBuildInputs = [ six requests ]; 18 19 # requires an active Azure Cosmos service 20 doCheck = false; 21 22 meta = with lib; { 23 description = "Azure Cosmos DB API"; 24 homepage = https://github.com/Azure/azure-cosmos-python; 25 license = licenses.mit; 26 maintainers = with maintainers; [ jonringer ]; 27 }; 28}