Skip to content

Commit

Permalink
Merge pull request #170642 from grindhold/durus
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperSandro2000 authored Apr 28, 2022
2 parents 46661fa + 49eeda1 commit 01045ea
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 0 deletions.
6 changes: 6 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4716,6 +4716,12 @@
githubId = 201997;
name = "Eric Seidel";
};
grindhold = {
name = "grindhold";
email = "[email protected]";
github = "grindhold";
githubId = 2592640;
};
gspia = {
email = "[email protected]";
github = "gspia";
Expand Down
28 changes: 28 additions & 0 deletions pkgs/development/python-modules/durus/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{ stdenv, lib, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
pname = "Durus";
version = "4.2";

src = fetchPypi {
inherit version pname;
sha256 = "sha256:1gzxg43zawwgqjrfixvcrilwpikb1ix9b7710rsl5ffk7q50yi3c";
};

# Checks disabled due to missing python unittest framework 'sancho' in nixpkgs
doCheck = false;

pythonImportsCheck = [
"durus.connection"
"durus.file_storage"
"durus.client_storage"
"durus.sqlite_storage"
];

meta = with lib; {
description = "Object persistence layer";
homepage = "https://github.com/nascheme/durus";
license = licenses.mit;
maintainers = with maintainers; [ grindhold ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2536,6 +2536,8 @@ in {

dungeon-eos = callPackage ../development/python-modules/dungeon-eos { };

durus = callPackage ../development/python-modules/durus { };

dwdwfsapi = callPackage ../development/python-modules/dwdwfsapi { };

dyn = callPackage ../development/python-modules/dyn { };
Expand Down

0 comments on commit 01045ea

Please sign in to comment.