nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 poetry-core,
6}:
7
8buildPythonPackage rec {
9 pname = "rpdb";
10 version = "0.2.0";
11 pyproject = true;
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "sha256-g0bw3UmKHDB2ivPTUozf6AhtjAV8n8y1Qwta7DKuFqs=";
16 };
17
18 build-system = [
19 poetry-core
20 ];
21
22 meta = {
23 description = "PDB wrapper with remote access via TCP socket";
24 homepage = "https://github.com/tamentis/rpdb";
25 license = lib.licenses.bsd2;
26 maintainers = [ ];
27 };
28}