15 buildPythonPackage rec {
18 disabled = pythonOlder "3.5"; # uses type annotations
20 src = fetchFromGitHub {
21 owner = "materialsvirtuallab";
23 rev = "refs/tags/v${version}";
24 sha256 = "sha256-3C5L7nKokuxtYlw13AKSrNVsvKH9okmBNyLXt7Vmjqk=";
28 substituteInPlace tests/test_os.py \
29 --replace 'self.assertEqual("/usr/bin/find", which("/usr/bin/find"))' '#'
32 propagatedBuildInputs = [
47 description = "Serves as a complement to the Python standard library by providing a suite of tools to solve many common problems";
49 Monty implements supplementary useful functions for Python that are not part of the
50 standard library. Examples include useful utilities like transparent support for zipped files, useful design
51 patterns such as singleton and cached_class, and many more.
53 homepage = "https://github.com/materialsvirtuallab/monty";
54 license = licenses.mit;
55 maintainers = with maintainers; [ psyanticy ];