Skip to content

Commit 52d028d

Browse files
committed
Run update
1 parent 8f7fce2 commit 52d028d

File tree

7 files changed

+17
-10
lines changed

7 files changed

+17
-10
lines changed

.envrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
use nix
1+
use nix

.generator.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Changes here will be overwritten by Copier
2-
_commit: ec8a823
2+
_commit: 3c38a44
33
_src_path: https://github.com/fastapi-mvc/copier-generator
4-
copyright_date: 2022
4+
copyright_date: '2022'
55
generator: project
66
generator_name: project
77
license: MIT

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ venv
3434
.direnv
3535

3636
# Nix build result
37-
result
37+
result

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022-present Radosław Szamszur
3+
Copyright (c) 2022-present
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

poetry.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "copier-env"
33
version = "0.1.0"
44
description = "Copier environment."
5-
authors = ["Radosław Szamszur <[email protected]>"]
5+
authors = []
66

77
[tool.poetry.dependencies]
88
python = "^3.8"

shell.nix

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1-
{ pkgs ? import <nixpkgs> { } }:
1+
{ pkgs ? import
2+
(builtins.fetchTarball {
3+
name = "22.05";
4+
url = "https://github.com/NixOS/nixpkgs/archive/72783a2d0dbbf030bff1537873dd5b85b3fb332f.tar.gz";
5+
sha256 = "1xggh6cim9kxl7nr6fwmsxzqqlnazyddak30xcd4api3f9g3slnz";
6+
})
7+
{ }
8+
}:
29

310
let
411
copier = pkgs.callPackage ./default.nix {
@@ -7,8 +14,8 @@ let
714
};
815
in
916
copier.env.overrideAttrs (oldAttrs: {
10-
buildInputs = [
11-
pkgs.git
17+
buildInputs = [
18+
pkgs.git
1219
pkgs.poetry
1320
];
1421
})

0 commit comments

Comments
 (0)