summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-dotenv
diff options
context:
space:
mode:
authorMihai Maruseac <mihai.maruseac@gmail.com>2024-02-25 17:15:29 -0800
committerMihai Maruseac <mihai.maruseac@gmail.com>2024-02-27 07:25:08 -0800
commit730a2ebebcb2250642967c133dd7a5b0aba8c2ef (patch)
tree2d6a6cb4aca38fa4be9f606a6f0b9997d4211259 /pkgs/development/python-modules/python-dotenv
parentf268bc170f9b306b77e1ff5497e58388520150d8 (diff)
python3Packages.python-dotenv: 1.0.0 -> 1.0.1
Updating this package as the new version was released this January and a package I want to add to nixpkgs depends on the newer version. The new version also supports newer versions of Python. Release notes: https://github.com/theskumar/python-dotenv/releases/tag/v1.0.1 Signed-off-by: Mihai Maruseac <mihai.maruseac@gmail.com>
Diffstat (limited to 'pkgs/development/python-modules/python-dotenv')
-rw-r--r--pkgs/development/python-modules/python-dotenv/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/python-dotenv/default.nix b/pkgs/development/python-modules/python-dotenv/default.nix
index b335a8a9831c..0854d354c2fe 100644
--- a/pkgs/development/python-modules/python-dotenv/default.nix
+++ b/pkgs/development/python-modules/python-dotenv/default.nix
@@ -11,13 +11,13 @@
buildPythonPackage rec {
pname = "python-dotenv";
- version = "1.0.0";
+ version = "1.0.1";
format = "setuptools";
- disabled = pythonOlder "3.5";
+ disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
- hash = "sha256-qN+WA0qubS1QpOvoIWMmxhw+tkg2d2UE/MpBDlk3o7o=";
+ hash = "sha256-4yTukKAj2AjxlZxGvLwERGoQztJ3eD3G7gmYfDfsEMo=";
};
propagatedBuildInputs = [ click ];