update nixpkgs

This commit is contained in:
Dmitriy Pleshevskiy 2023-03-15 23:49:19 +03:00
parent 7ca48ab76e
commit 19b0deadea
Signed by: pleshevskiy
GPG Key ID: 79C4487B44403985
2 changed files with 7 additions and 19 deletions

View File

@ -2,11 +2,11 @@
"nodes": { "nodes": {
"flake-utils": { "flake-utils": {
"locked": { "locked": {
"lastModified": 1667395993, "lastModified": 1678901627,
"narHash": "sha256-nuEHfE/LcWyuSWnS8t12N1wc105Qtau+/OdUAjtQ0rA=", "narHash": "sha256-U02riOqrKKzwjsxc/400XnElV+UtPUQWpANPlyazjH0=",
"owner": "numtide", "owner": "numtide",
"repo": "flake-utils", "repo": "flake-utils",
"rev": "5aed5285a952e0b949eb3ba02c12fa4fcfef535f", "rev": "93a2b84fc4b70d9e089d029deacc3583435c2ed6",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -17,11 +17,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1669261230, "lastModified": 1678875422,
"narHash": "sha256-AjddxRPd5y5jge77281P3O8+Cnafj842Xg59rwV4x+0=", "narHash": "sha256-T3o6NcQPwXjxJMn2shz86Chch4ljXgZn746c2caGxd8=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "8e8b5f3b1e899bf5d250279578c0283705b8cdb4", "rev": "126f49a01de5b7e35a43fd43f891ecf6d3a51459",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -29,20 +29,8 @@ let
buildInputs = old.buildInputs ++ [ prev.flit-scm ]; buildInputs = old.buildInputs ++ [ prev.flit-scm ];
}); });
mypy = prev.mypy.overridePythonAttrs (old: { mypy = prev.mypy.overridePythonAttrs (old: {
buildInputs = old.buildInputs ++ [ full.types-psutil ]; buildInputs = old.buildInputs ++ [ prev.types-psutil ];
}); });
types-psutil = prev.buildPythonPackage rec {
pname = "types-psutil";
version = "5.9.5";
src = prev.fetchPypi {
inherit version;
pname = "types-psutil";
sha256 = "sha256-vvkd4Ja3f/e8OpK6/kZu5V+EIobB1zRli3wmslkHglM=";
};
pythonImportsCheck = [ "psutil-stubs" ];
};
}); });
src = fetchFromGitHub { src = fetchFromGitHub {